blob: 69cf76f4e21f7a20675d20dfc1d28c14f6ec76ee [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
Alexander Martinz8e9bbca2022-01-11 11:50:03 +010082 id="Range"
83 message="Value must be ≥ 0 (was -1)"
84 errorLine1=" columnIndex = cursor.getColumnIndexOrThrow(MediaStore.Audio.Playlists.Members.AUDIO_ID);"
85 errorLine2=" ~~~~~~~~~~~">
86 <location
87 file="src/org/lineageos/eleven/utils/MusicUtils.java"
88 line="724"
89 column="13"/>
90 </issue>
91
92 <issue
93 id="Range"
94 message="Value must be ≥ 0 (was -1)"
95 errorLine1=" list[i] = cursor.getLong(columnIndex);"
96 errorLine2=" ~~~~~~~~~~~">
97 <location
98 file="src/org/lineageos/eleven/utils/MusicUtils.java"
99 line="730"
100 column="42"/>
101 </issue>
102
103 <issue
104 id="Range"
105 message="Value must be ≥ 0"
106 errorLine1=" final long lastUpdate = c.getLong(c.getColumnIndex(columnName));"
107 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
108 <location
109 file="src/org/lineageos/eleven/provider/PlaylistArtworkStore.java"
110 line="208"
111 column="51"/>
112 </issue>
113
114 <issue
115 id="Range"
116 message="Value must be ≥ 0"
117 errorLine1=" final int lastUpdatedSongCount = c.getInt(c.getColumnIndex(countColumnName));"
118 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
119 <location
120 file="src/org/lineageos/eleven/provider/PlaylistArtworkStore.java"
121 line="211"
122 column="59"/>
123 </issue>
124
125 <issue
126 id="Range"
127 message="Value must be ≥ 0"
128 errorLine1=" long id = playlistCursor.getLong(playlistCursor.getColumnIndex("
129 errorLine2=" ^">
130 <location
131 file="src/org/lineageos/eleven/cache/PlaylistWorkerTask.java"
132 line="186"
133 column="50"/>
134 </issue>
135
136 <issue
137 id="WrongConstant"
138 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"
139 errorLine1=" return 0;"
140 errorLine2=" ~">
141 <location
142 file="src/org/lineageos/eleven/utils/EmptyCursor.java"
143 line="154"
144 column="16"/>
145 </issue>
146
147 <issue
148 id="StringFormatMatches"
149 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)"
150 errorLine1=" return String.format(durationFormat, hoursString, minutesString);"
151 errorLine2=" ~~~~~~~~~~~">
152 <location
153 file="src/org/lineageos/eleven/utils/MusicUtils.java"
154 line="274"
155 column="46"/>
156 <location
157 file="res/values-ug/strings.xml"
158 line="137"
159 column="5"
160 message="Conflicting argument declaration here"/>
161 </issue>
162
163 <issue
164 id="StringFormatMatches"
165 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)"
166 errorLine1=" return String.format(durationFormat, hoursString, minutesString);"
167 errorLine2=" ~~~~~~~~~~~~~">
168 <location
169 file="src/org/lineageos/eleven/utils/MusicUtils.java"
170 line="274"
171 column="59"/>
172 <location
173 file="res/values-ug/strings.xml"
174 line="137"
175 column="5"
176 message="Conflicting argument declaration here"/>
177 </issue>
178
179 <issue
180 id="StringFormatMatches"
181 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"
182 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>"
183 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
184 <location
185 file="res/values-ug/strings.xml"
186 line="137"
187 column="5"/>
188 <location
189 file="res/values-zh-rHK/strings.xml"
190 line="128"
191 column="5"
192 message="Conflicting argument type (`s&apos;) here"/>
193 </issue>
194
195 <issue
196 id="UnusedQuantity"
197 message="For language &quot;cs&quot; (Czech) the following quantities are not relevant: `many`"
198 errorLine1=" &lt;plurals name=&quot;Nalbums&quot;>"
199 errorLine2=" ^">
200 <location
201 file="res/values-cs/plurals.xml"
202 line="19"
203 column="5"/>
204 </issue>
205
206 <issue
207 id="UnusedQuantity"
208 message="For language &quot;sk&quot; (Slovak) the following quantities are not relevant: `many`"
209 errorLine1=" &lt;plurals name=&quot;Nalbums&quot;>"
210 errorLine2=" ^">
211 <location
212 file="res/values-sk/plurals.xml"
213 line="19"
214 column="5"/>
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;Nsongs&quot;>"
221 errorLine2=" ^">
222 <location
223 file="res/values-cs/plurals.xml"
224 line="25"
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;Nsongs&quot;>"
232 errorLine2=" ^">
233 <location
234 file="res/values-sk/plurals.xml"
235 line="25"
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;Nhours&quot;>"
243 errorLine2=" ^">
244 <location
245 file="res/values-cs/plurals.xml"
246 line="31"
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;Nhours&quot;>"
254 errorLine2=" ^">
255 <location
256 file="res/values-sk/plurals.xml"
257 line="31"
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;Nminutes&quot;>"
265 errorLine2=" ^">
266 <location
267 file="res/values-cs/plurals.xml"
268 line="37"
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;Nminutes&quot;>"
276 errorLine2=" ^">
277 <location
278 file="res/values-sk/plurals.xml"
279 line="37"
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;NNNtrackstoplaylist&quot;>"
287 errorLine2=" ^">
288 <location
289 file="res/values-cs/plurals.xml"
290 line="43"
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;NNNtrackstoplaylist&quot;>"
298 errorLine2=" ^">
299 <location
300 file="res/values-sk/plurals.xml"
301 line="43"
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;NNNtracksfromplaylist&quot;>"
309 errorLine2=" ^">
310 <location
311 file="res/values-cs/plurals.xml"
312 line="49"
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;NNNtracksfromplaylist&quot;>"
320 errorLine2=" ^">
321 <location
322 file="res/values-sk/plurals.xml"
323 line="49"
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;NNNtrackstoqueue&quot;>"
331 errorLine2=" ^">
332 <location
333 file="res/values-cs/plurals.xml"
334 line="55"
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;NNNtrackstoqueue&quot;>"
342 errorLine2=" ^">
343 <location
344 file="res/values-sk/plurals.xml"
345 line="55"
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;NNNtracksdeleted&quot;>"
353 errorLine2=" ^">
354 <location
355 file="res/values-cs/plurals.xml"
356 line="61"
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;NNNtracksdeleted&quot;>"
364 errorLine2=" ^">
365 <location
366 file="res/values-sk/plurals.xml"
367 line="61"
368 column="5"/>
369 </issue>
370
371 <issue
372 id="UnsupportedChromeOsHardware"
373 message="Expecting `android:required=&quot;false&quot;` for this hardware feature that may not be supported by all Chrome OS devices"
374 errorLine1=" &lt;uses-feature android:name=&quot;android.hardware.sensor.accelerometer&quot; />"
375 errorLine2=" ~~~~~~~~~~~~">
376 <location
377 file="AndroidManifest.xml"
378 line="65"
379 column="6"/>
380 </issue>
381
382 <issue
Alexander Martinz8e9bbca2022-01-11 11:50:03 +0100383 id="AllowBackup"
384 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"
385 errorLine1=" android:allowBackup=&quot;true&quot;"
386 errorLine2=" ~~~~~~~~~~~~~~~~~~~">
387 <location
388 file="AndroidManifest.xml"
389 line="69"
390 column="9"/>
391 </issue>
392
393 <issue
394 id="Recycle"
395 message="This animation should be started with `#start()`"
396 errorLine1=" mValueAnimators[i] = new ValueAnimator();"
397 errorLine2=" ~~~~~~~~~~~~~~~~~~~">
398 <location
399 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
400 line="178"
401 column="34"/>
402 </issue>
403
404 <issue
405 id="StaticFieldLeak"
406 message="This field leaks a context object"
407 errorLine1=" protected final Context mContext;"
408 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
409 <location
410 file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
411 line="51"
412 column="5"/>
413 </issue>
414
415 <issue
416 id="StaticFieldLeak"
417 message="This `AsyncTask` class should be static or leaks might occur (anonymous android.os.AsyncTask)"
418 errorLine1=" new AsyncTask&lt;Void, Void, BitmapWithColors>() {"
419 errorLine2=" ^">
420 <location
421 file="src/org/lineageos/eleven/ui/activities/HomeActivity.java"
422 line="225"
423 column="13"/>
424 </issue>
425
426 <issue
427 id="StaticFieldLeak"
428 message="This `AsyncTask` class should be static or leaks might occur (anonymous android.os.AsyncTask)"
429 errorLine1=" ElevenUtils.execute(new AsyncTask&lt;Void, Void, Void>() {"
430 errorLine2=" ^">
431 <location
432 file="src/org/lineageos/eleven/cache/ImageCache.java"
433 line="134"
434 column="29"/>
435 </issue>
436
437 <issue
438 id="StaticFieldLeak"
439 message="This `AsyncTask` class should be static or leaks might occur (anonymous android.os.AsyncTask)"
440 errorLine1=" ElevenUtils.execute(new AsyncTask&lt;Void, Void, Void>() {"
441 errorLine2=" ^">
442 <location
443 file="src/org/lineageos/eleven/cache/ImageCache.java"
444 line="471"
445 column="29"/>
446 </issue>
447
448 <issue
449 id="StaticFieldLeak"
450 message="This `AsyncTask` class should be static or leaks might occur (anonymous android.os.AsyncTask)"
451 errorLine1=" ElevenUtils.execute(new AsyncTask&lt;Void, Void, Void>() {"
452 errorLine2=" ^">
453 <location
454 file="src/org/lineageos/eleven/cache/ImageCache.java"
455 line="493"
456 column="29"/>
457 </issue>
458
459 <issue
460 id="StaticFieldLeak"
461 message="This `AsyncTask` class should be static or leaks might occur (anonymous android.os.AsyncTask)"
462 errorLine1=" ElevenUtils.execute(new AsyncTask&lt;Void, Void, Void>() {"
463 errorLine2=" ^">
464 <location
465 file="src/org/lineageos/eleven/cache/ImageCache.java"
466 line="519"
467 column="29"/>
468 </issue>
469
470 <issue
471 id="StaticFieldLeak"
472 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"
473 errorLine1=" private static LocalizedStore sInstance = null;"
474 errorLine2=" ~~~~~~">
475 <location
476 file="src/org/lineageos/eleven/provider/LocalizedStore.java"
477 line="53"
478 column="13"/>
479 </issue>
480
481 <issue
482 id="StaticFieldLeak"
483 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"
484 errorLine1=" private static MusicDB sInstance = null;"
485 errorLine2=" ~~~~~~">
486 <location
487 file="src/org/lineageos/eleven/provider/MusicDB.java"
488 line="44"
489 column="13"/>
490 </issue>
491
492 <issue
493 id="StaticFieldLeak"
494 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"
495 errorLine1=" private static PlaylistArtworkStore sInstance = null;"
496 errorLine2=" ~~~~~~">
497 <location
498 file="src/org/lineageos/eleven/provider/PlaylistArtworkStore.java"
499 line="33"
500 column="13"/>
501 </issue>
502
503 <issue
504 id="LogConditional"
505 message="The log call Log.d(...) should be conditional: surround with `if (Log.isLoggable(...))` or `if (BuildConfig.DEBUG) { ... }`"
506 errorLine1=" Log.d(TAG, &quot;Locale Changed from: &quot; + mCurrentLocales + &quot; to &quot; + localeSet);"
507 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
508 <location
509 file="src/org/lineageos/eleven/locale/LocaleSetManager.java"
510 line="77"
511 column="9"/>
512 </issue>
513
514 <issue
515 id="LogConditional"
516 message="The log call Log.i(...) should be conditional: surround with `if (Log.isLoggable(...))` or `if (BuildConfig.DEBUG) { ... }`"
517 errorLine1=" Log.i(TAG, &quot;AddressBook Labels [&quot; + mLocales.toString() + &quot;]: &quot;"
518 errorLine2=" ^">
519 <location
520 file="src/org/lineageos/eleven/locale/LocaleUtils.java"
521 line="191"
522 column="9"/>
523 </issue>
524
525 <issue
526 id="HandlerLeak"
527 message="This `Handler` class should be static or leaks might occur (anonymous android.content.AsyncQueryHandler)"
528 errorLine1=" sAsyncQueryHandler = new AsyncQueryHandler(getContentResolver()) {"
529 errorLine2=" ^">
530 <location
531 file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
532 line="222"
533 column="30"/>
534 </issue>
535
536 <issue
537 id="Overdraw"
538 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`)"
539 errorLine1=" android:background=&quot;@color/activity_album_detail_background_color&quot; >"
540 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
541 <location
542 file="res/layout/activity_album_detail.xml"
543 line="4"
544 column="5"/>
545 </issue>
546
547 <issue
548 id="Overdraw"
549 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`)"
550 errorLine1=" android:background=&quot;@color/activity_artist_detail_background_color&quot;>"
551 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
552 <location
553 file="res/layout/activity_artist_detail.xml"
554 line="4"
555 column="5"/>
556 </issue>
557
558 <issue
559 id="Overdraw"
560 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`)"
561 errorLine1=" android:background=&quot;@color/header_action_bar_color&quot;"
562 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
563 <location
564 file="res/layout/header_bar.xml"
565 line="25"
566 column="5"/>
567 </issue>
568
569 <issue
570 id="UnusedResources"
571 message="The resource `R.dimen.list_item_header_size` appears to be unused"
572 errorLine1=" &lt;dimen name=&quot;list_item_header_size&quot;>16.0sp&lt;/dimen>"
573 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
574 <location
575 file="res/values/dimens.xml"
576 line="39"
577 column="12"/>
578 </issue>
579
580 <issue
581 id="UnusedResources"
582 message="The resource `R.layout.list_header` appears to be unused"
583 errorLine1="&lt;TextView xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
584 errorLine2="^">
585 <location
586 file="res/layout/list_header.xml"
587 line="18"
588 column="1"/>
589 </issue>
590
591 <issue
592 id="UsableSpace"
593 message="Consider also using `StorageManager#getAllocatableBytes` and `allocateBytes` which will consider clearable cached data"
594 errorLine1=" return path.getUsableSpace();"
595 errorLine2=" ~~~~~~~~~~~~~~">
596 <location
597 file="src/org/lineageos/eleven/cache/ImageCache.java"
598 line="605"
599 column="21"/>
600 </issue>
601
602 <issue
603 id="SyntheticAccessor"
604 message="Access to `private` field `TAG` of class `AlbumArtPagerAdapter` requires synthetic accessor"
605 errorLine1=" Log.d(TAG, &quot;[&quot; + mFragment.mAudioId + &quot;] Loading image: &quot;"
606 errorLine2=" ~~~">
607 <location
608 file="src/org/lineageos/eleven/adapters/AlbumArtPagerAdapter.java"
609 line="283"
610 column="27"/>
611 </issue>
612
613 <issue
614 id="SyntheticAccessor"
615 message="Access to `private` field `mAudioId` of class `AlbumArtFragment` requires synthetic accessor"
616 errorLine1=" Log.d(TAG, &quot;[&quot; + mFragment.mAudioId + &quot;] Loading image: &quot;"
617 errorLine2=" ~~~~~~~~">
618 <location
619 file="src/org/lineageos/eleven/adapters/AlbumArtPagerAdapter.java"
620 line="283"
621 column="48"/>
622 </issue>
623
624 <issue
625 id="SyntheticAccessor"
626 message="Access to `private` method `loadImageAsync` of class `AlbumArtFragment` requires synthetic accessor"
627 errorLine1=" mFragment.loadImageAsync(result);"
628 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~">
629 <location
630 file="src/org/lineageos/eleven/adapters/AlbumArtPagerAdapter.java"
631 line="290"
632 column="17"/>
633 </issue>
634
635 <issue
636 id="SyntheticAccessor"
637 message="Access to `private` field `TAG` of class `AlbumArtPagerAdapter` requires synthetic accessor"
638 errorLine1=" Log.d(TAG, &quot;No Image found for audioId: &quot; + mFragment.mAudioId);"
639 errorLine2=" ~~~">
640 <location
641 file="src/org/lineageos/eleven/adapters/AlbumArtPagerAdapter.java"
642 line="292"
643 column="23"/>
644 </issue>
645
646 <issue
647 id="SyntheticAccessor"
648 message="Access to `private` field `mAudioId` of class `AlbumArtFragment` requires synthetic accessor"
649 errorLine1=" Log.d(TAG, &quot;No Image found for audioId: &quot; + mFragment.mAudioId);"
650 errorLine2=" ~~~~~~~~">
651 <location
652 file="src/org/lineageos/eleven/adapters/AlbumArtPagerAdapter.java"
653 line="292"
654 column="71"/>
655 </issue>
656
657 <issue
658 id="SyntheticAccessor"
659 message="Access to `private` field `mAlbumId` of class `AlbumDetailFragment` requires synthetic accessor"
660 errorLine1=" return new Album(mAlbumId, mAlbumName, mArtistName, -1, null);"
661 errorLine2=" ~~~~~~~~">
662 <location
663 file="src/org/lineageos/eleven/ui/fragments/AlbumDetailFragment.java"
664 line="97"
665 column="34"/>
666 </issue>
667
668 <issue
669 id="SyntheticAccessor"
670 message="Access to `private` field `mAlbumName` of class `AlbumDetailFragment` requires synthetic accessor"
671 errorLine1=" return new Album(mAlbumId, mAlbumName, mArtistName, -1, null);"
672 errorLine2=" ~~~~~~~~~~">
673 <location
674 file="src/org/lineageos/eleven/ui/fragments/AlbumDetailFragment.java"
675 line="97"
676 column="44"/>
677 </issue>
678
679 <issue
680 id="SyntheticAccessor"
681 message="Access to `private` field `mArtistName` of class `AlbumDetailFragment` requires synthetic accessor"
682 errorLine1=" return new Album(mAlbumId, mAlbumName, mArtistName, -1, null);"
683 errorLine2=" ~~~~~~~~~~~">
684 <location
685 file="src/org/lineageos/eleven/ui/fragments/AlbumDetailFragment.java"
686 line="97"
687 column="56"/>
688 </issue>
689
690 <issue
691 id="SyntheticAccessor"
692 message="Access to `private` field `mSongAdapter` of class `AlbumDetailFragment` requires synthetic accessor"
693 errorLine1=" return mSongAdapter.getItem(position);"
694 errorLine2=" ~~~~~~~~~~~~">
695 <location
696 file="src/org/lineageos/eleven/ui/fragments/AlbumDetailFragment.java"
697 line="153"
698 column="24"/>
699 </issue>
700
701 <issue
702 id="SyntheticAccessor"
703 message="Access to `private` field `mAlbumId` of class `AlbumDetailFragment` requires synthetic accessor"
704 errorLine1=" return mAlbumId;"
705 errorLine2=" ~~~~~~~~">
706 <location
707 file="src/org/lineageos/eleven/ui/fragments/AlbumDetailFragment.java"
708 line="158"
709 column="24"/>
710 </issue>
711
712 <issue
713 id="SyntheticAccessor"
714 message="Access to `private` field `mAdapter` of class `AlbumFragment` requires synthetic accessor"
715 errorLine1=" return mAdapter.getItem(position);"
716 errorLine2=" ~~~~~~~~">
717 <location
718 file="src/org/lineageos/eleven/ui/fragments/AlbumFragment.java"
719 line="96"
720 column="24"/>
721 </issue>
722
723 <issue
724 id="SyntheticAccessor"
725 message="Access to `private` field `mLoadingEmptyContainer` of class `ArtistDetailFragment` requires synthetic accessor"
726 errorLine1=" mLoadingEmptyContainer.showLoading();"
727 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~">
728 <location
729 file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
730 line="78"
731 column="21"/>
732 </issue>
733
734 <issue
735 id="SyntheticAccessor"
736 message="Access to `private` field `mLoadingEmptyContainer` of class `ArtistDetailFragment` requires synthetic accessor"
737 errorLine1=" mLoadingEmptyContainer.setVisibility(View.GONE);"
738 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~">
739 <location
740 file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
741 line="96"
742 column="21"/>
743 </issue>
744
745 <issue
746 id="SyntheticAccessor"
747 message="Access to `private` field `mSongAdapter` of class `ArtistDetailFragment` requires synthetic accessor"
748 errorLine1=" handler.post(() -> mSongAdapter.setData(data));"
749 errorLine2=" ~~~~~~~~~~~~">
750 <location
751 file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
752 line="98"
753 column="40"/>
754 </issue>
755
756 <issue
757 id="SyntheticAccessor"
758 message="Access to `private` field `mSongAdapter` of class `ArtistDetailFragment` requires synthetic accessor"
759 errorLine1=" mSongAdapter.unload();"
760 errorLine2=" ~~~~~~~~~~~~">
761 <location
762 file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
763 line="103"
764 column="21"/>
765 </issue>
766
767 <issue
768 id="SyntheticAccessor"
769 message="Access to `private` field `mAlbumAdapter` of class `ArtistDetailFragment` requires synthetic accessor"
770 errorLine1=" handler.post(() -> mAlbumAdapter.setData(data));"
771 errorLine2=" ~~~~~~~~~~~~~">
772 <location
773 file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
774 line="125"
775 column="40"/>
776 </issue>
777
778 <issue
779 id="SyntheticAccessor"
780 message="Access to `private` field `mAlbumAdapter` of class `ArtistDetailFragment` requires synthetic accessor"
781 errorLine1=" mAlbumAdapter.unload();"
782 errorLine2=" ~~~~~~~~~~~~~">
783 <location
784 file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
785 line="130"
786 column="21"/>
787 </issue>
788
789 <issue
790 id="SyntheticAccessor"
791 message="Access to `private` field `mArtistId` of class `ArtistDetailFragment` requires synthetic accessor"
792 errorLine1=" return new Artist(mArtistId, mArtistName, 0, 0);"
793 errorLine2=" ~~~~~~~~~">
794 <location
795 file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
796 line="174"
797 column="35"/>
798 </issue>
799
800 <issue
801 id="SyntheticAccessor"
802 message="Access to `private` field `mArtistName` of class `ArtistDetailFragment` requires synthetic accessor"
803 errorLine1=" return new Artist(mArtistId, mArtistName, 0, 0);"
804 errorLine2=" ~~~~~~~~~~~">
805 <location
806 file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
807 line="174"
808 column="46"/>
809 </issue>
810
811 <issue
812 id="SyntheticAccessor"
813 message="Access to `private` field `mHero` of class `ArtistDetailFragment` requires synthetic accessor"
814 errorLine1=" mHero.getViewTreeObserver().removeOnGlobalLayoutListener(this);"
815 errorLine2=" ~~~~~">
816 <location
817 file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
818 line="200"
819 column="25"/>
820 </issue>
821
822 <issue
823 id="SyntheticAccessor"
824 message="Access to `private` field `mArtistName` of class `ArtistDetailFragment` requires synthetic accessor"
825 errorLine1=" loadArtistImage(mArtistName, mHero, true);"
826 errorLine2=" ~~~~~~~~~~~">
827 <location
828 file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
829 line="202"
830 column="49"/>
831 </issue>
832
833 <issue
834 id="SyntheticAccessor"
835 message="Access to `private` field `mHero` of class `ArtistDetailFragment` requires synthetic accessor"
836 errorLine1=" loadArtistImage(mArtistName, mHero, true);"
837 errorLine2=" ~~~~~">
838 <location
839 file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
840 line="202"
841 column="62"/>
842 </issue>
843
844 <issue
845 id="SyntheticAccessor"
846 message="Access to `private` field `mSongAdapter` of class `ArtistDetailFragment` requires synthetic accessor"
847 errorLine1=" return mSongAdapter.getItem(position);"
848 errorLine2=" ~~~~~~~~~~~~">
849 <location
850 file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
851 line="234"
852 column="24"/>
853 </issue>
854
855 <issue
856 id="SyntheticAccessor"
857 message="Access to `private` field `mAlbumAdapter` of class `ArtistDetailFragment` requires synthetic accessor"
858 errorLine1=" return mAlbumAdapter.getItem(position);"
859 errorLine2=" ~~~~~~~~~~~~~">
860 <location
861 file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
862 line="259"
863 column="24"/>
864 </issue>
865
866 <issue
867 id="SyntheticAccessor"
868 message="Access to `private` field `mAdapter` of class `ArtistFragment` requires synthetic accessor"
869 errorLine1=" return mAdapter.getItem(position);"
870 errorLine2=" ~~~~~~~~">
871 <location
872 file="src/org/lineageos/eleven/ui/fragments/ArtistFragment.java"
873 line="108"
874 column="24"/>
875 </issue>
876
877 <issue
878 id="SyntheticAccessor"
879 message="Access to `private` field `TAG` of class `AudioPlayerFragment` requires synthetic accessor"
880 errorLine1=" Log.w(TAG, &quot;Unexpected page position of &quot; + position"
881 errorLine2=" ~~~">
882 <location
883 file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
884 line="377"
885 column="27"/>
886 </issue>
887
888 <issue
889 id="SyntheticAccessor"
890 message="Access to `private` method `refreshCurrentTime` of class `AudioPlayerFragment` requires synthetic accessor"
891 errorLine1=" final long next = mAudioPlayer.get().refreshCurrentTime();"
892 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
893 <location
894 file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
895 line="553"
896 column="35"/>
897 </issue>
898
899 <issue
900 id="SyntheticAccessor"
901 message="Access to `private` method `queueNextRefresh` of class `AudioPlayerFragment` requires synthetic accessor"
902 errorLine1=" mAudioPlayer.get().queueNextRefresh(next);"
903 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
904 <location
905 file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
906 line="554"
907 column="17"/>
908 </issue>
909
910 <issue
911 id="SyntheticAccessor"
912 message="Access to `private` method `createAndSetAdapter` of class `AudioPlayerFragment` requires synthetic accessor"
913 errorLine1=" mReference.get().createAndSetAdapter();"
914 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
915 <location
916 file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
917 line="584"
918 column="21"/>
919 </issue>
920
921 <issue
922 id="SyntheticAccessor"
923 message="Access to `private` method `updateNowPlayingInfo` of class `AudioPlayerFragment` requires synthetic accessor"
924 errorLine1=" audioPlayerFragment.updateNowPlayingInfo();"
925 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
926 <location
927 file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
928 line="588"
929 column="17"/>
930 </issue>
931
932 <issue
933 id="SyntheticAccessor"
934 message="Access to `private` field `mMainPlaybackControls` of class `AudioPlayerFragment` requires synthetic accessor"
935 errorLine1=" audioPlayerFragment.mMainPlaybackControls.updatePlayPauseState();"
936 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~">
937 <location
938 file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
939 line="590"
940 column="37"/>
941 </issue>
942
943 <issue
944 id="SyntheticAccessor"
945 message="Access to `private` field `mVisualizerView` of class `AudioPlayerFragment` requires synthetic accessor"
946 errorLine1=" audioPlayerFragment.mVisualizerView.setPlaying(MusicUtils.isPlaying());"
947 errorLine2=" ~~~~~~~~~~~~~~~">
948 <location
949 file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
950 line="591"
951 column="37"/>
952 </issue>
953
954 <issue
955 id="SyntheticAccessor"
956 message="Access to `private` field `mMainPlaybackControls` of class `AudioPlayerFragment` requires synthetic accessor"
957 errorLine1=" audioPlayerFragment.mMainPlaybackControls.updateRepeatState();"
958 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~">
959 <location
960 file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
961 line="595"
962 column="37"/>
963 </issue>
964
965 <issue
966 id="SyntheticAccessor"
967 message="Access to `private` field `mMainPlaybackControls` of class `AudioPlayerFragment` requires synthetic accessor"
968 errorLine1=" audioPlayerFragment.mMainPlaybackControls.updateShuffleState();"
969 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~">
970 <location
971 file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
972 line="597"
973 column="37"/>
974 </issue>
975
976 <issue
977 id="SyntheticAccessor"
978 message="Access to `private` method `createAndSetAdapter` of class `AudioPlayerFragment` requires synthetic accessor"
979 errorLine1=" audioPlayerFragment.createAndSetAdapter();"
980 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
981 <location
982 file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
983 line="600"
984 column="17"/>
985 </issue>
986
987 <issue
988 id="SyntheticAccessor"
989 message="Access to `private` method `createAndSetAdapter` of class `AudioPlayerFragment` requires synthetic accessor"
990 errorLine1=" audioPlayerFragment.createAndSetAdapter();"
991 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
992 <location
993 file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
994 line="603"
995 column="17"/>
996 </issue>
997
998 <issue
999 id="SyntheticAccessor"
1000 message="Access to `private` method `pausePlayback` of class `AudioPreviewActivity` requires synthetic accessor"
1001 errorLine1=" pausePlayback();"
1002 errorLine2=" ~~~~~~~~~~~~~">
1003 <location
1004 file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
1005 line="160"
1006 column="21"/>
1007 </issue>
1008
1009 <issue
1010 id="SyntheticAccessor"
1011 message="Access to `private` method `onQueryComplete` of class `AudioPreviewActivity` requires synthetic accessor"
1012 errorLine1=" AudioPreviewActivity.this.onQueryComplete(token, cursor);"
1013 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
1014 <location
1015 file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
1016 line="225"
1017 column="17"/>
1018 </issue>
1019
1020 <issue
1021 id="SyntheticAccessor"
1022 message="Access to `private` field `mPlayPauseButtonContainer` of class `BaseActivity` requires synthetic accessor"
1023 errorLine1=" baseActivity.mPlayPauseButtonContainer.updateState();"
1024 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~">
1025 <location
1026 file="src/org/lineageos/eleven/ui/activities/BaseActivity.java"
1027 line="361"
1028 column="30"/>
1029 </issue>
1030
1031 <issue
1032 id="SyntheticAccessor"
1033 message="Access to `private` field `mPlayPauseProgressButton` of class `BaseActivity` requires synthetic accessor"
1034 errorLine1=" baseActivity.mPlayPauseProgressButton.updateState();"
1035 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~">
1036 <location
1037 file="src/org/lineageos/eleven/ui/activities/BaseActivity.java"
1038 line="362"
1039 column="30"/>
1040 </issue>
1041
1042 <issue
1043 id="SyntheticAccessor"
1044 message="Access to `private` field `journalWriter` of class `DiskLruCache` requires synthetic accessor"
1045 errorLine1=" if (journalWriter == null) {"
1046 errorLine2=" ~~~~~~~~~~~~~">
1047 <location
1048 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1049 line="170"
1050 column="21"/>
1051 </issue>
1052
1053 <issue
1054 id="SyntheticAccessor"
1055 message="Access to `private` method `trimToSize` of class `DiskLruCache` requires synthetic accessor"
1056 errorLine1=" trimToSize();"
1057 errorLine2=" ~~~~~~~~~~">
1058 <location
1059 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1060 line="173"
1061 column="17"/>
1062 </issue>
1063
1064 <issue
1065 id="SyntheticAccessor"
1066 message="Access to `private` method `journalRebuildRequired` of class `DiskLruCache` requires synthetic accessor"
1067 errorLine1=" if (journalRebuildRequired()) {"
1068 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~">
1069 <location
1070 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1071 line="174"
1072 column="21"/>
1073 </issue>
1074
1075 <issue
1076 id="SyntheticAccessor"
1077 message="Access to `private` method `rebuildJournal` of class `DiskLruCache` requires synthetic accessor"
1078 errorLine1=" rebuildJournal();"
1079 errorLine2=" ~~~~~~~~~~~~~~">
1080 <location
1081 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1082 line="175"
1083 column="21"/>
1084 </issue>
1085
1086 <issue
1087 id="SyntheticAccessor"
1088 message="Access to `private` field `redundantOpCount` of class `DiskLruCache` requires synthetic accessor"
1089 errorLine1=" redundantOpCount = 0;"
1090 errorLine2=" ~~~~~~~~~~~~~~~~">
1091 <location
1092 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1093 line="176"
1094 column="21"/>
1095 </issue>
1096
1097 <issue
1098 id="SyntheticAccessor"
1099 message="Access to `private` constructor of class `Entry` requires synthetic accessor"
1100 errorLine1=" entry = new Entry(key);"
1101 errorLine2=" ~~~~~~~~~~~~~~">
1102 <location
1103 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1104 line="312"
1105 column="21"/>
1106 </issue>
1107
1108 <issue
1109 id="SyntheticAccessor"
1110 message="Access to `private` field `readable` of class `Entry` requires synthetic accessor"
1111 errorLine1=" entry.readable = true;"
1112 errorLine2=" ~~~~~~~~">
1113 <location
1114 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1115 line="318"
1116 column="19"/>
1117 </issue>
1118
1119 <issue
1120 id="SyntheticAccessor"
1121 message="Access to `private` field `currentEditor` of class `Entry` requires synthetic accessor"
1122 errorLine1=" entry.currentEditor = null;"
1123 errorLine2=" ~~~~~~~~~~~~~">
1124 <location
1125 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1126 line="319"
1127 column="19"/>
1128 </issue>
1129
1130 <issue
1131 id="SyntheticAccessor"
1132 message="Access to `private` method `setLengths` of class `Entry` requires synthetic accessor"
1133 errorLine1=" entry.setLengths(parts);"
1134 errorLine2=" ~~~~~~~~~~~~~~~~">
1135 <location
1136 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1137 line="320"
1138 column="13"/>
1139 </issue>
1140
1141 <issue
1142 id="SyntheticAccessor"
1143 message="Access to `private` constructor of class `Editor` requires synthetic accessor"
1144 errorLine1=" entry.currentEditor = new Editor(entry);"
1145 errorLine2=" ~~~~~~~~~~~~~~~~~">
1146 <location
1147 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1148 line="322"
1149 column="35"/>
1150 </issue>
1151
1152 <issue
1153 id="SyntheticAccessor"
1154 message="Access to `private` field `currentEditor` of class `Entry` requires synthetic accessor"
1155 errorLine1=" entry.currentEditor = new Editor(entry);"
1156 errorLine2=" ~~~~~~~~~~~~~">
1157 <location
1158 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1159 line="322"
1160 column="19"/>
1161 </issue>
1162
1163 <issue
1164 id="SyntheticAccessor"
1165 message="Access to `private` field `currentEditor` of class `Entry` requires synthetic accessor"
1166 errorLine1=" if (entry.currentEditor == null) {"
1167 errorLine2=" ~~~~~~~~~~~~~">
1168 <location
1169 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1170 line="338"
1171 column="23"/>
1172 </issue>
1173
1174 <issue
1175 id="SyntheticAccessor"
1176 message="Access to `private` field `lengths` of class `Entry` requires synthetic accessor"
1177 errorLine1=" size += entry.lengths[t];"
1178 errorLine2=" ~~~~~~~">
1179 <location
1180 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1181 line="340"
1182 column="35"/>
1183 </issue>
1184
1185 <issue
1186 id="SyntheticAccessor"
1187 message="Access to `private` field `currentEditor` of class `Entry` requires synthetic accessor"
1188 errorLine1=" entry.currentEditor = null;"
1189 errorLine2=" ~~~~~~~~~~~~~">
1190 <location
1191 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1192 line="343"
1193 column="23"/>
1194 </issue>
1195
1196 <issue
1197 id="SyntheticAccessor"
1198 message="Access to `private` field `currentEditor` of class `Entry` requires synthetic accessor"
1199 errorLine1=" if (entry.currentEditor != null) {"
1200 errorLine2=" ~~~~~~~~~~~~~">
1201 <location
1202 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1203 line="375"
1204 column="27"/>
1205 </issue>
1206
1207 <issue
1208 id="SyntheticAccessor"
1209 message="Access to `private` field `key` of class `Entry` requires synthetic accessor"
1210 errorLine1=" writer.write(DIRTY + &apos; &apos; + entry.key + &apos;\n&apos;);"
1211 errorLine2=" ~~~">
1212 <location
1213 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1214 line="376"
1215 column="54"/>
1216 </issue>
1217
1218 <issue
1219 id="SyntheticAccessor"
1220 message="Access to `private` field `key` of class `Entry` requires synthetic accessor"
1221 errorLine1=" writer.write(CLEAN + &apos; &apos; + entry.key + entry.getLengths() + &apos;\n&apos;);"
1222 errorLine2=" ~~~">
1223 <location
1224 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1225 line="378"
1226 column="54"/>
1227 </issue>
1228
1229 <issue
1230 id="SyntheticAccessor"
1231 message="Access to `private` field `readable` of class `Entry` requires synthetic accessor"
1232 errorLine1=" if (!entry.readable) {"
1233 errorLine2=" ~~~~~~~~">
1234 <location
1235 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1236 line="422"
1237 column="20"/>
1238 </issue>
1239
1240 <issue
1241 id="SyntheticAccessor"
1242 message="Access to `private` constructor of class `Snapshot` requires synthetic accessor"
1243 errorLine1=" return new Snapshot(ins);"
1244 errorLine2=" ~~~~~~~~~~~~~~~~~">
1245 <location
1246 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1247 line="452"
1248 column="16"/>
1249 </issue>
1250
1251 <issue
1252 id="SyntheticAccessor"
1253 message="Access to `private` field `sequenceNumber` of class `Entry` requires synthetic accessor"
1254 errorLine1=" || entry.sequenceNumber != expectedSequenceNumber)) {"
1255 errorLine2=" ~~~~~~~~~~~~~~">
1256 <location
1257 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1258 line="468"
1259 column="26"/>
1260 </issue>
1261
1262 <issue
1263 id="SyntheticAccessor"
1264 message="Access to `private` constructor of class `Entry` requires synthetic accessor"
1265 errorLine1=" entry = new Entry(key);"
1266 errorLine2=" ~~~~~~~~~~~~~~">
1267 <location
1268 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1269 line="472"
1270 column="21"/>
1271 </issue>
1272
1273 <issue
1274 id="SyntheticAccessor"
1275 message="Access to `private` field `currentEditor` of class `Entry` requires synthetic accessor"
1276 errorLine1=" } else if (entry.currentEditor != null) {"
1277 errorLine2=" ~~~~~~~~~~~~~">
1278 <location
1279 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1280 line="474"
1281 column="26"/>
1282 </issue>
1283
1284 <issue
1285 id="SyntheticAccessor"
1286 message="Access to `private` constructor of class `Editor` requires synthetic accessor"
1287 errorLine1=" Editor editor = new Editor(entry);"
1288 errorLine2=" ~~~~~~~~~~~~~~~~~">
1289 <location
1290 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1291 line="478"
1292 column="25"/>
1293 </issue>
1294
1295 <issue
1296 id="SyntheticAccessor"
1297 message="Access to `private` field `currentEditor` of class `Entry` requires synthetic accessor"
1298 errorLine1=" entry.currentEditor = editor;"
1299 errorLine2=" ~~~~~~~~~~~~~">
1300 <location
1301 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1302 line="479"
1303 column="15"/>
1304 </issue>
1305
1306 <issue
1307 id="SyntheticAccessor"
1308 message="Access to `private` field `entry` of class `Editor` requires synthetic accessor"
1309 errorLine1=" Entry entry = editor.entry;"
1310 errorLine2=" ~~~~~">
1311 <location
1312 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1313 line="488"
1314 column="30"/>
1315 </issue>
1316
1317 <issue
1318 id="SyntheticAccessor"
1319 message="Access to `private` field `currentEditor` of class `Entry` requires synthetic accessor"
1320 errorLine1=" if (entry.currentEditor != editor) {"
1321 errorLine2=" ~~~~~~~~~~~~~">
1322 <location
1323 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1324 line="489"
1325 column="19"/>
1326 </issue>
1327
1328 <issue
1329 id="SyntheticAccessor"
1330 message="Access to `private` field `readable` of class `Entry` requires synthetic accessor"
1331 errorLine1=" if (success &amp;&amp; !entry.readable) {"
1332 errorLine2=" ~~~~~~~~">
1333 <location
1334 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1335 line="494"
1336 column="31"/>
1337 </issue>
1338
1339 <issue
1340 id="SyntheticAccessor"
1341 message="Access to `private` field `written` of class `Editor` requires synthetic accessor"
1342 errorLine1=" if (!editor.written[i]) {"
1343 errorLine2=" ~~~~~~~">
1344 <location
1345 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1346 line="496"
1347 column="29"/>
1348 </issue>
1349
1350 <issue
1351 id="SyntheticAccessor"
1352 message="Access to `private` field `lengths` of class `Entry` requires synthetic accessor"
1353 errorLine1=" long oldLength = entry.lengths[i];"
1354 errorLine2=" ~~~~~~~">
1355 <location
1356 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1357 line="514"
1358 column="44"/>
1359 </issue>
1360
1361 <issue
1362 id="SyntheticAccessor"
1363 message="Access to `private` field `lengths` of class `Entry` requires synthetic accessor"
1364 errorLine1=" entry.lengths[i] = newLength;"
1365 errorLine2=" ~~~~~~~">
1366 <location
1367 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1368 line="516"
1369 column="27"/>
1370 </issue>
1371
1372 <issue
1373 id="SyntheticAccessor"
1374 message="Access to `private` field `currentEditor` of class `Entry` requires synthetic accessor"
1375 errorLine1=" entry.currentEditor = null;"
1376 errorLine2=" ~~~~~~~~~~~~~">
1377 <location
1378 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1379 line="525"
1380 column="15"/>
1381 </issue>
1382
1383 <issue
1384 id="SyntheticAccessor"
1385 message="Access to `private` field `readable` of class `Entry` requires synthetic accessor"
1386 errorLine1=" if (entry.readable | success) {"
1387 errorLine2=" ~~~~~~~~">
1388 <location
1389 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1390 line="526"
1391 column="19"/>
1392 </issue>
1393
1394 <issue
1395 id="SyntheticAccessor"
1396 message="Access to `private` field `readable` of class `Entry` requires synthetic accessor"
1397 errorLine1=" entry.readable = true;"
1398 errorLine2=" ~~~~~~~~">
1399 <location
1400 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1401 line="527"
1402 column="19"/>
1403 </issue>
1404
1405 <issue
1406 id="SyntheticAccessor"
1407 message="Access to `private` field `key` of class `Entry` requires synthetic accessor"
1408 errorLine1=" journalWriter.write(CLEAN + &apos; &apos; + entry.key + entry.getLengths() + &apos;\n&apos;);"
1409 errorLine2=" ~~~">
1410 <location
1411 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1412 line="528"
1413 column="53"/>
1414 </issue>
1415
1416 <issue
1417 id="SyntheticAccessor"
1418 message="Access to `private` field `sequenceNumber` of class `Entry` requires synthetic accessor"
1419 errorLine1=" entry.sequenceNumber = nextSequenceNumber++;"
1420 errorLine2=" ~~~~~~~~~~~~~~">
1421 <location
1422 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1423 line="530"
1424 column="23"/>
1425 </issue>
1426
1427 <issue
1428 id="SyntheticAccessor"
1429 message="Access to `private` field `key` of class `Entry` requires synthetic accessor"
1430 errorLine1=" lruEntries.remove(entry.key);"
1431 errorLine2=" ~~~">
1432 <location
1433 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1434 line="533"
1435 column="37"/>
1436 </issue>
1437
1438 <issue
1439 id="SyntheticAccessor"
1440 message="Access to `private` field `key` of class `Entry` requires synthetic accessor"
1441 errorLine1=" journalWriter.write(REMOVE + &apos; &apos; + entry.key + &apos;\n&apos;);"
1442 errorLine2=" ~~~">
1443 <location
1444 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1445 line="534"
1446 column="54"/>
1447 </issue>
1448
1449 <issue
1450 id="SyntheticAccessor"
1451 message="Access to `private` field `currentEditor` of class `Entry` requires synthetic accessor"
1452 errorLine1=" if (entry == null || entry.currentEditor != null) {"
1453 errorLine2=" ~~~~~~~~~~~~~">
1454 <location
1455 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1456 line="564"
1457 column="36"/>
1458 </issue>
1459
1460 <issue
1461 id="SyntheticAccessor"
1462 message="Access to `private` field `lengths` of class `Entry` requires synthetic accessor"
1463 errorLine1=" size -= entry.lengths[i];"
1464 errorLine2=" ~~~~~~~">
1465 <location
1466 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1467 line="573"
1468 column="27"/>
1469 </issue>
1470
1471 <issue
1472 id="SyntheticAccessor"
1473 message="Access to `private` field `lengths` of class `Entry` requires synthetic accessor"
1474 errorLine1=" entry.lengths[i] = 0;"
1475 errorLine2=" ~~~~~~~">
1476 <location
1477 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1478 line="574"
1479 column="19"/>
1480 </issue>
1481
1482 <issue
1483 id="SyntheticAccessor"
1484 message="Access to `private` field `currentEditor` of class `Entry` requires synthetic accessor"
1485 errorLine1=" if (entry.currentEditor != null) {"
1486 errorLine2=" ~~~~~~~~~~~~~">
1487 <location
1488 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1489 line="618"
1490 column="23"/>
1491 </issue>
1492
1493 <issue
1494 id="SyntheticAccessor"
1495 message="Access to `private` field `currentEditor` of class `Entry` requires synthetic accessor"
1496 errorLine1=" entry.currentEditor.abort();"
1497 errorLine2=" ~~~~~~~~~~~~~">
1498 <location
1499 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1500 line="619"
1501 column="23"/>
1502 </issue>
1503
1504 <issue
1505 id="SyntheticAccessor"
1506 message="Access to `private` field `readable` of class `Entry` requires synthetic accessor"
1507 errorLine1=" this.written = (entry.readable) ? null : new boolean[valueCount];"
1508 errorLine2=" ~~~~~~~~">
1509 <location
1510 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1511 line="693"
1512 column="35"/>
1513 </issue>
1514
1515 <issue
1516 id="SyntheticAccessor"
1517 message="Access to `private` field `valueCount` of class `DiskLruCache` requires synthetic accessor"
1518 errorLine1=" this.written = (entry.readable) ? null : new boolean[valueCount];"
1519 errorLine2=" ~~~~~~~~~~">
1520 <location
1521 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1522 line="693"
1523 column="66"/>
1524 </issue>
1525
1526 <issue
1527 id="SyntheticAccessor"
1528 message="Access to `private` field `valueCount` of class `DiskLruCache` requires synthetic accessor"
1529 errorLine1=" if (index &lt; 0 || index >= valueCount) {"
1530 errorLine2=" ~~~~~~~~~~">
1531 <location
1532 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1533 line="704"
1534 column="39"/>
1535 </issue>
1536
1537 <issue
1538 id="SyntheticAccessor"
1539 message="Access to `private` field `valueCount` of class `DiskLruCache` requires synthetic accessor"
1540 errorLine1=" + &quot;of &quot; + valueCount);"
1541 errorLine2=" ~~~~~~~~~~">
1542 <location
1543 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1544 line="707"
1545 column="35"/>
1546 </issue>
1547
1548 <issue
1549 id="SyntheticAccessor"
1550 message="Access to `private` field `currentEditor` of class `Entry` requires synthetic accessor"
1551 errorLine1=" if (entry.currentEditor != this) {"
1552 errorLine2=" ~~~~~~~~~~~~~">
1553 <location
1554 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1555 line="710"
1556 column="27"/>
1557 </issue>
1558
1559 <issue
1560 id="SyntheticAccessor"
1561 message="Access to `private` field `readable` of class `Entry` requires synthetic accessor"
1562 errorLine1=" if (!entry.readable) {"
1563 errorLine2=" ~~~~~~~~">
1564 <location
1565 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1566 line="713"
1567 column="28"/>
1568 </issue>
1569
1570 <issue
1571 id="SyntheticAccessor"
1572 message="Access to `private` field `directory` of class `DiskLruCache` requires synthetic accessor"
1573 errorLine1=" directory.mkdirs();"
1574 errorLine2=" ~~~~~~~~~">
1575 <location
1576 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1577 line="723"
1578 column="21"/>
1579 </issue>
1580
1581 <issue
1582 id="SyntheticAccessor"
1583 message="Access to `private` field `NULL_OUTPUT_STREAM` of class `DiskLruCache` requires synthetic accessor"
1584 errorLine1=" return NULL_OUTPUT_STREAM;"
1585 errorLine2=" ~~~~~~~~~~~~~~~~~~">
1586 <location
1587 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1588 line="728"
1589 column="32"/>
1590 </issue>
1591
1592 <issue
1593 id="SyntheticAccessor"
1594 message="Access to `private` constructor of class `FaultHidingOutputStream` requires synthetic accessor"
1595 errorLine1=" return new FaultHidingOutputStream(outputStream);"
1596 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
1597 <location
1598 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1599 line="731"
1600 column="24"/>
1601 </issue>
1602
1603 <issue
1604 id="SyntheticAccessor"
1605 message="Access to `private` method `completeEdit` of class `DiskLruCache` requires synthetic accessor"
1606 errorLine1=" completeEdit(this, false);"
1607 errorLine2=" ~~~~~~~~~~~~">
1608 <location
1609 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1610 line="741"
1611 column="17"/>
1612 </issue>
1613
1614 <issue
1615 id="SyntheticAccessor"
1616 message="Access to `private` field `key` of class `Entry` requires synthetic accessor"
1617 errorLine1=" remove(entry.key); // The previous entry is stale."
1618 errorLine2=" ~~~">
1619 <location
1620 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1621 line="742"
1622 column="30"/>
1623 </issue>
1624
1625 <issue
1626 id="SyntheticAccessor"
1627 message="Access to `private` method `completeEdit` of class `DiskLruCache` requires synthetic accessor"
1628 errorLine1=" completeEdit(this, true);"
1629 errorLine2=" ~~~~~~~~~~~~">
1630 <location
1631 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1632 line="744"
1633 column="17"/>
1634 </issue>
1635
1636 <issue
1637 id="SyntheticAccessor"
1638 message="Access to `private` method `completeEdit` of class `DiskLruCache` requires synthetic accessor"
1639 errorLine1=" completeEdit(this, false);"
1640 errorLine2=" ~~~~~~~~~~~~">
1641 <location
1642 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1643 line="753"
1644 column="13"/>
1645 </issue>
1646
1647 <issue
1648 id="SyntheticAccessor"
1649 message="Access to `private` field `hasErrors` of class `Editor` requires synthetic accessor"
1650 errorLine1=" hasErrors = true;"
1651 errorLine2=" ~~~~~~~~~">
1652 <location
1653 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1654 line="766"
1655 column="21"/>
1656 </issue>
1657
1658 <issue
1659 id="SyntheticAccessor"
1660 message="Access to `private` field `hasErrors` of class `Editor` requires synthetic accessor"
1661 errorLine1=" hasErrors = true;"
1662 errorLine2=" ~~~~~~~~~">
1663 <location
1664 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1665 line="775"
1666 column="21"/>
1667 </issue>
1668
1669 <issue
1670 id="SyntheticAccessor"
1671 message="Access to `private` field `hasErrors` of class `Editor` requires synthetic accessor"
1672 errorLine1=" hasErrors = true;"
1673 errorLine2=" ~~~~~~~~~">
1674 <location
1675 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1676 line="784"
1677 column="21"/>
1678 </issue>
1679
1680 <issue
1681 id="SyntheticAccessor"
1682 message="Access to `private` field `hasErrors` of class `Editor` requires synthetic accessor"
1683 errorLine1=" hasErrors = true;"
1684 errorLine2=" ~~~~~~~~~">
1685 <location
1686 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1687 line="793"
1688 column="21"/>
1689 </issue>
1690
1691 <issue
1692 id="SyntheticAccessor"
1693 message="Access to `private` field `valueCount` of class `DiskLruCache` requires synthetic accessor"
1694 errorLine1=" this.lengths = new long[valueCount];"
1695 errorLine2=" ~~~~~~~~~~">
1696 <location
1697 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1698 line="824"
1699 column="37"/>
1700 </issue>
1701
1702 <issue
1703 id="SyntheticAccessor"
1704 message="Access to `private` field `valueCount` of class `DiskLruCache` requires synthetic accessor"
1705 errorLine1=" if (strings.length != valueCount) {"
1706 errorLine2=" ~~~~~~~~~~">
1707 <location
1708 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1709 line="839"
1710 column="35"/>
1711 </issue>
1712
1713 <issue
1714 id="SyntheticAccessor"
1715 message="Access to `private` field `directory` of class `DiskLruCache` requires synthetic accessor"
1716 errorLine1=" return new File(directory, key + &quot;.&quot; + i);"
1717 errorLine2=" ~~~~~~~~~">
1718 <location
1719 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1720 line="857"
1721 column="29"/>
1722 </issue>
1723
1724 <issue
1725 id="SyntheticAccessor"
1726 message="Access to `private` field `directory` of class `DiskLruCache` requires synthetic accessor"
1727 errorLine1=" return new File(directory, key + &quot;.&quot; + i + &quot;.tmp&quot;);"
1728 errorLine2=" ~~~~~~~~~">
1729 <location
1730 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1731 line="861"
1732 column="29"/>
1733 </issue>
1734
1735 <issue
1736 id="SyntheticAccessor"
1737 message="Access to `private` method `updateVisualizerColor` of class `HomeActivity` requires synthetic accessor"
1738 errorLine1=" updateVisualizerColor(bmc != null"
1739 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~">
1740 <location
1741 file="src/org/lineageos/eleven/ui/activities/HomeActivity.java"
1742 line="235"
1743 column="21"/>
1744 </issue>
1745
1746 <issue
1747 id="SyntheticAccessor"
1748 message="Access to `private` method `updateStatusBarColor` of class `HomeActivity` requires synthetic accessor"
1749 errorLine1=" updateStatusBarColor(bmc != null"
1750 errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
1751 <location
1752 file="src/org/lineageos/eleven/ui/activities/HomeActivity.java"
1753 line="237"
1754 column="21"/>
1755 </issue>
1756
1757 <issue
1758 id="SyntheticAccessor"
1759 message="Access to `private` method `initDiskCache` of class `ImageCache` requires synthetic accessor"
1760 errorLine1=" initDiskCache(context);"
1761 errorLine2=" ~~~~~~~~~~~~~">
1762 <location
1763 file="src/org/lineageos/eleven/cache/ImageCache.java"
1764 line="139"
1765 column="17"/>
1766 </issue>
1767
1768 <issue
1769 id="SyntheticAccessor"
1770 message="Access to `private` field `mLruCache` of class `ImageCache` requires synthetic accessor"
1771 errorLine1=" mLruCache.trimToSize(mLruCache.size() / 2);"
1772 errorLine2=" ~~~~~~~~~">
1773 <location
1774 file="src/org/lineageos/eleven/cache/ImageCache.java"
1775 line="191"
1776 column="21"/>
1777 </issue>
1778
1779 <issue
1780 id="SyntheticAccessor"
1781 message="Access to `private` field `mLruCache` of class `ImageCache` requires synthetic accessor"
1782 errorLine1=" mLruCache.trimToSize(mLruCache.size() / 2);"
1783 errorLine2=" ~~~~~~~~~">
1784 <location
1785 file="src/org/lineageos/eleven/cache/ImageCache.java"
1786 line="191"
1787 column="42"/>
1788 </issue>
1789
1790 <issue
1791 id="SyntheticAccessor"
1792 message="Access to `private` field `mDiskCache` of class `ImageCache` requires synthetic accessor"
1793 errorLine1=" if (mDiskCache != null) {"
1794 errorLine2=" ~~~~~~~~~~">
1795 <location
1796 file="src/org/lineageos/eleven/cache/ImageCache.java"
1797 line="475"
1798 column="21"/>
1799 </issue>
1800
1801 <issue
1802 id="SyntheticAccessor"
1803 message="Access to `private` field `mDiskCache` of class `ImageCache` requires synthetic accessor"
1804 errorLine1=" if (!mDiskCache.isClosed()) {"
1805 errorLine2=" ~~~~~~~~~~">
1806 <location
1807 file="src/org/lineageos/eleven/cache/ImageCache.java"
1808 line="477"
1809 column="30"/>
1810 </issue>
1811
1812 <issue
1813 id="SyntheticAccessor"
1814 message="Access to `private` field `mDiskCache` of class `ImageCache` requires synthetic accessor"
1815 errorLine1=" mDiskCache.flush();"
1816 errorLine2=" ~~~~~~~~~~">
1817 <location
1818 file="src/org/lineageos/eleven/cache/ImageCache.java"
1819 line="478"
1820 column="29"/>
1821 </issue>
1822
1823 <issue
1824 id="SyntheticAccessor"
1825 message="Access to `private` field `TAG` of class `ImageCache` requires synthetic accessor"
1826 errorLine1=" Log.e(TAG, &quot;flush&quot;, e);"
1827 errorLine2=" ~~~">
1828 <location
1829 file="src/org/lineageos/eleven/cache/ImageCache.java"
1830 line="481"
1831 column="31"/>
1832 </issue>
1833
1834 <issue
1835 id="SyntheticAccessor"
1836 message="Access to `private` field `mDiskCache` of class `ImageCache` requires synthetic accessor"
1837 errorLine1=" if (mDiskCache != null) {"
1838 errorLine2=" ~~~~~~~~~~">
1839 <location
1840 file="src/org/lineageos/eleven/cache/ImageCache.java"
1841 line="499"
1842 column="25"/>
1843 </issue>
1844
1845 <issue
1846 id="SyntheticAccessor"
1847 message="Access to `private` field `mDiskCache` of class `ImageCache` requires synthetic accessor"
1848 errorLine1=" mDiskCache.delete();"
1849 errorLine2=" ~~~~~~~~~~">
1850 <location
1851 file="src/org/lineageos/eleven/cache/ImageCache.java"
1852 line="500"
1853 column="25"/>
1854 </issue>
1855
1856 <issue
1857 id="SyntheticAccessor"
1858 message="Access to `private` field `mDiskCache` of class `ImageCache` requires synthetic accessor"
1859 errorLine1=" mDiskCache = null;"
1860 errorLine2=" ~~~~~~~~~~">
1861 <location
1862 file="src/org/lineageos/eleven/cache/ImageCache.java"
1863 line="501"
1864 column="25"/>
1865 </issue>
1866
1867 <issue
1868 id="SyntheticAccessor"
1869 message="Access to `private` field `TAG` of class `ImageCache` requires synthetic accessor"
1870 errorLine1=" Log.e(TAG, &quot;clearCaches&quot;, e);"
1871 errorLine2=" ~~~">
1872 <location
1873 file="src/org/lineageos/eleven/cache/ImageCache.java"
1874 line="504"
1875 column="27"/>
1876 </issue>
1877
1878 <issue
1879 id="SyntheticAccessor"
1880 message="Access to `private` field `mDiskCache` of class `ImageCache` requires synthetic accessor"
1881 errorLine1=" if (mDiskCache != null) {"
1882 errorLine2=" ~~~~~~~~~~">
1883 <location
1884 file="src/org/lineageos/eleven/cache/ImageCache.java"
1885 line="523"
1886 column="21"/>
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.isClosed()) {"
1893 errorLine2=" ~~~~~~~~~~">
1894 <location
1895 file="src/org/lineageos/eleven/cache/ImageCache.java"
1896 line="525"
1897 column="30"/>
1898 </issue>
1899
1900 <issue
1901 id="SyntheticAccessor"
1902 message="Access to `private` field `mDiskCache` of class `ImageCache` requires synthetic accessor"
1903 errorLine1=" mDiskCache.close();"
1904 errorLine2=" ~~~~~~~~~~">
1905 <location
1906 file="src/org/lineageos/eleven/cache/ImageCache.java"
1907 line="526"
1908 column="29"/>
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="527"
1919 column="29"/>
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;close&quot;, e);"
1926 errorLine2=" ~~~">
1927 <location
1928 file="src/org/lineageos/eleven/cache/ImageCache.java"
1929 line="530"
1930 column="31"/>
1931 </issue>
1932
1933 <issue
1934 id="SyntheticAccessor"
1935 message="Access to `private` field `CHINESE_LANGUAGE` of class `LocaleSet` requires synthetic accessor"
1936 errorLine1=" return CHINESE_LANGUAGE.equals(language) ||"
1937 errorLine2=" ~~~~~~~~~~~~~~~~">
1938 <location
1939 file="src/org/lineageos/eleven/locale/LocaleSet.java"
1940 line="37"
1941 column="20"/>
1942 </issue>
1943
1944 <issue
1945 id="SyntheticAccessor"
1946 message="Access to `private` field `JAPANESE_LANGUAGE` of class `LocaleSet` requires synthetic accessor"
1947 errorLine1=" JAPANESE_LANGUAGE.equals(language) ||"
1948 errorLine2=" ~~~~~~~~~~~~~~~~~">
1949 <location
1950 file="src/org/lineageos/eleven/locale/LocaleSet.java"
1951 line="38"
1952 column="21"/>
1953 </issue>
1954
1955 <issue
1956 id="SyntheticAccessor"
1957 message="Access to `private` field `KOREAN_LANGUAGE` of class `LocaleSet` requires synthetic accessor"
1958 errorLine1=" KOREAN_LANGUAGE.equals(language);"
1959 errorLine2=" ~~~~~~~~~~~~~~~">
1960 <location
1961 file="src/org/lineageos/eleven/locale/LocaleSet.java"
1962 line="39"
1963 column="21"/>
1964 </issue>
1965
1966 <issue
1967 id="SyntheticAccessor"
1968 message="Access to `private` field `mLocaleSetManager` of class `LocalizedStore` requires synthetic accessor"
1969 errorLine1=" if (msg.what == LOCALE_CHANGED &amp;&amp; mLocaleSetManager.localeSetNeedsUpdate()) {"
1970 errorLine2=" ~~~~~~~~~~~~~~~~~">
1971 <location
1972 file="src/org/lineageos/eleven/provider/LocalizedStore.java"
1973 line="98"
1974 column="51"/>
1975 </issue>
1976
1977 <issue
1978 id="SyntheticAccessor"
1979 message="Access to `private` field `mLocaleSetManager` of class `LocalizedStore` requires synthetic accessor"
1980 errorLine1=" rebuildLocaleData(mLocaleSetManager.getSystemLocaleSet());"
1981 errorLine2=" ~~~~~~~~~~~~~~~~~">
1982 <location
1983 file="src/org/lineageos/eleven/provider/LocalizedStore.java"
1984 line="99"
1985 column="39"/>
1986 </issue>
1987
1988 <issue
1989 id="SyntheticAccessor"
1990 message="Access to `private` method `rebuildLocaleData` of class `LocalizedStore` requires synthetic accessor"
1991 errorLine1=" rebuildLocaleData(mLocaleSetManager.getSystemLocaleSet());"
1992 errorLine2=" ~~~~~~~~~~~~~~~~~">
1993 <location
1994 file="src/org/lineageos/eleven/provider/LocalizedStore.java"
1995 line="99"
1996 column="21"/>
1997 </issue>
1998
1999 <issue
2000 id="SyntheticAccessor"
2001 message="Access to `private` member of class `SortData` requires synthetic accessor"
2002 errorLine1=" SortData sortData = new SortData();"
2003 errorLine2=" ~~~~~~~~~~~~~~">
2004 <location
2005 file="src/org/lineageos/eleven/provider/LocalizedStore.java"
2006 line="347"
2007 column="29"/>
2008 </issue>
2009
2010 <issue
2011 id="SyntheticAccessor"
2012 message="Access to `private` method `createOrderBy` of class `LocalizedStore` requires synthetic accessor"
2013 errorLine1=" return createOrderBy(NAME_BUCKET, NAME, descending);"
2014 errorLine2=" ~~~~~~~~~~~~~">
2015 <location
2016 file="src/org/lineageos/eleven/provider/LocalizedStore.java"
2017 line="561"
2018 column="20"/>
2019 </issue>
2020
2021 <issue
2022 id="SyntheticAccessor"
2023 message="Access to `private` method `createOrderBy` of class `LocalizedStore` requires synthetic accessor"
2024 errorLine1=" return createOrderBy(NAME_BUCKET, NAME, descending);"
2025 errorLine2=" ~~~~~~~~~~~~~">
2026 <location
2027 file="src/org/lineageos/eleven/provider/LocalizedStore.java"
2028 line="589"
2029 column="20"/>
2030 </issue>
2031
2032 <issue
2033 id="SyntheticAccessor"
2034 message="Access to `private` method `createOrderBy` of class `LocalizedStore` requires synthetic accessor"
2035 errorLine1=" return createOrderBy(NAME_BUCKET, NAME, descending);"
2036 errorLine2=" ~~~~~~~~~~~~~">
2037 <location
2038 file="src/org/lineageos/eleven/provider/LocalizedStore.java"
2039 line="615"
2040 column="20"/>
2041 </issue>
2042
2043 <issue
2044 id="SyntheticAccessor"
2045 message="Access to `private` method `refreshCurrentTimeText` of class `MainPlaybackControls` requires synthetic accessor"
2046 errorLine1=" refreshCurrentTimeText(progress);"
2047 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~">
2048 <location
2049 file="src/org/lineageos/eleven/widgets/MainPlaybackControls.java"
2050 line="77"
2051 column="21"/>
2052 </issue>
2053
2054 <issue
2055 id="SyntheticAccessor"
2056 message="Access to `private` constructor of class `ServiceStub` requires synthetic accessor"
2057 errorLine1=" private final IBinder mBinder = new ServiceStub(this);"
2058 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~">
2059 <location
2060 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2061 line="387"
2062 column="37"/>
2063 </issue>
2064
2065 <issue
2066 id="SyntheticAccessor"
2067 message="Access to `private` method `releaseServiceUiAndStop` of class `MusicPlaybackService` requires synthetic accessor"
2068 errorLine1=" releaseServiceUiAndStop();"
2069 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
2070 <location
2071 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2072 line="728"
2073 column="17"/>
2074 </issue>
2075
2076 <issue
2077 id="SyntheticAccessor"
2078 message="Access to `private` method `handleHeadsetHookClick` of class `MusicPlaybackService` requires synthetic accessor"
2079 errorLine1=" handleHeadsetHookClick(ke.getEventTime());"
2080 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~">
2081 <location
2082 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2083 line="742"
2084 column="29"/>
2085 </issue>
2086
2087 <issue
2088 id="SyntheticAccessor"
2089 message="Access to `private` method `saveQueue` of class `MusicPlaybackService` requires synthetic accessor"
2090 errorLine1=" saveQueue(true);"
2091 errorLine2=" ~~~~~~~~~">
2092 <location
2093 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2094 line="975"
2095 column="25"/>
2096 </issue>
2097
2098 <issue
2099 id="SyntheticAccessor"
2100 message="Access to `private` field `mQueueIsSaveable` of class `MusicPlaybackService` requires synthetic accessor"
2101 errorLine1=" mQueueIsSaveable = false;"
2102 errorLine2=" ~~~~~~~~~~~~~~~~">
2103 <location
2104 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2105 line="976"
2106 column="25"/>
2107 </issue>
2108
2109 <issue
2110 id="SyntheticAccessor"
2111 message="Access to `private` field `mMediaMountedCount` of class `MusicPlaybackService` requires synthetic accessor"
2112 errorLine1=" mMediaMountedCount++;"
2113 errorLine2=" ~~~~~~~~~~~~~~~~~~">
2114 <location
2115 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2116 line="979"
2117 column="25"/>
2118 </issue>
2119
2120 <issue
2121 id="SyntheticAccessor"
2122 message="Access to `private` field `mCardId` of class `MusicPlaybackService` requires synthetic accessor"
2123 errorLine1=" mCardId = getCardId();"
2124 errorLine2=" ~~~~~~~">
2125 <location
2126 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2127 line="980"
2128 column="25"/>
2129 </issue>
2130
2131 <issue
2132 id="SyntheticAccessor"
2133 message="Access to `private` method `getCardId` of class `MusicPlaybackService` requires synthetic accessor"
2134 errorLine1=" mCardId = getCardId();"
2135 errorLine2=" ~~~~~~~~~">
2136 <location
2137 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2138 line="980"
2139 column="35"/>
2140 </issue>
2141
2142 <issue
2143 id="SyntheticAccessor"
2144 message="Access to `private` method `reloadQueue` of class `MusicPlaybackService` requires synthetic accessor"
2145 errorLine1=" reloadQueue();"
2146 errorLine2=" ~~~~~~~~~~~">
2147 <location
2148 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2149 line="981"
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 = true;"
2157 errorLine2=" ~~~~~~~~~~~~~~~~">
2158 <location
2159 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2160 line="982"
2161 column="25"/>
2162 </issue>
2163
2164 <issue
2165 id="SyntheticAccessor"
2166 message="Access to `private` method `notifyChange` of class `MusicPlaybackService` requires synthetic accessor"
2167 errorLine1=" notifyChange(QUEUE_CHANGED);"
2168 errorLine2=" ~~~~~~~~~~~~">
2169 <location
2170 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2171 line="983"
2172 column="25"/>
2173 </issue>
2174
2175 <issue
2176 id="SyntheticAccessor"
2177 message="Access to `private` method `notifyChange` of class `MusicPlaybackService` requires synthetic accessor"
2178 errorLine1=" notifyChange(META_CHANGED);"
2179 errorLine2=" ~~~~~~~~~~~~">
2180 <location
2181 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2182 line="984"
2183 column="25"/>
2184 </issue>
2185
2186 <issue
2187 id="SyntheticAccessor"
2188 message="Access to `private` field `mCurrentVolume` of class `MusicPlayerHandler` requires synthetic accessor"
2189 errorLine1=" mPlayerHandler.mCurrentVolume = 0f;"
2190 errorLine2=" ~~~~~~~~~~~~~~">
2191 <location
2192 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2193 line="2523"
2194 column="36"/>
2195 </issue>
2196
2197 <issue
2198 id="SyntheticAccessor"
2199 message="Access to `private` field `mAppWidgetSmall` of class `MusicPlaybackService` requires synthetic accessor"
2200 errorLine1=" mAppWidgetSmall.performUpdate(MusicPlaybackService.this, small);"
2201 errorLine2=" ~~~~~~~~~~~~~~~">
2202 <location
2203 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2204 line="2925"
2205 column="17"/>
2206 </issue>
2207
2208 <issue
2209 id="SyntheticAccessor"
2210 message="Access to `private` field `mAppWidgetLarge` of class `MusicPlaybackService` requires synthetic accessor"
2211 errorLine1=" mAppWidgetLarge.performUpdate(MusicPlaybackService.this, large);"
2212 errorLine2=" ~~~~~~~~~~~~~~~">
2213 <location
2214 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2215 line="2928"
2216 column="17"/>
2217 </issue>
2218
2219 <issue
2220 id="SyntheticAccessor"
2221 message="Access to `private` field `mAppWidgetLargeAlternate` of class `MusicPlaybackService` requires synthetic accessor"
2222 errorLine1=" mAppWidgetLargeAlternate.performUpdate(MusicPlaybackService.this, largeAlt);"
2223 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~">
2224 <location
2225 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2226 line="2932"
2227 column="17"/>
2228 </issue>
2229
2230 <issue
2231 id="SyntheticAccessor"
2232 message="Access to `private` method `handleCommandIntent` of class `MusicPlaybackService` requires synthetic accessor"
2233 errorLine1=" handleCommandIntent(intent);"
2234 errorLine2=" ~~~~~~~~~~~~~~~~~~~">
2235 <location
2236 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2237 line="2934"
2238 column="17"/>
2239 </issue>
2240
2241 <issue
2242 id="SyntheticAccessor"
2243 message="Access to `private` field `mPlayer` of class `MusicPlaybackService` requires synthetic accessor"
2244 errorLine1=" service.mPlayer.setVolume(mCurrentVolume);"
2245 errorLine2=" ~~~~~~~">
2246 <location
2247 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2248 line="3002"
2249 column="33"/>
2250 </issue>
2251
2252 <issue
2253 id="SyntheticAccessor"
2254 message="Access to `private` field `mPlayer` of class `MusicPlaybackService` requires synthetic accessor"
2255 errorLine1=" service.mPlayer.setVolume(mCurrentVolume);"
2256 errorLine2=" ~~~~~~~">
2257 <location
2258 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2259 line="3011"
2260 column="33"/>
2261 </issue>
2262
2263 <issue
2264 id="SyntheticAccessor"
2265 message="Access to `private` method `sendErrorMessage` of class `MusicPlaybackService` requires synthetic accessor"
2266 errorLine1=" service.sendErrorMessage(info.mTrackName);"
2267 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~">
2268 <location
2269 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2270 line="3016"
2271 column="29"/>
2272 </issue>
2273
2274 <issue
2275 id="SyntheticAccessor"
2276 message="Access to `private` method `openCurrentAndNext` of class `MusicPlaybackService` requires synthetic accessor"
2277 errorLine1=" service.openCurrentAndNext();"
2278 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~">
2279 <location
2280 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2281 line="3022"
2282 column="29"/>
2283 </issue>
2284
2285 <issue
2286 id="SyntheticAccessor"
2287 message="Access to `private` field `mNextPlayPos` of class `MusicPlaybackService` requires synthetic accessor"
2288 errorLine1=" service.setAndRecordPlayPos(service.mNextPlayPos);"
2289 errorLine2=" ~~~~~~~~~~~~">
2290 <location
2291 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2292 line="3026"
2293 column="61"/>
2294 </issue>
2295
2296 <issue
2297 id="SyntheticAccessor"
2298 message="Access to `private` method `setNextTrack` of class `MusicPlaybackService` requires synthetic accessor"
2299 errorLine1=" service.setNextTrack();"
2300 errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
2301 <location
2302 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2303 line="3027"
2304 column="25"/>
2305 </issue>
2306
2307 <issue
2308 id="SyntheticAccessor"
2309 message="Access to `private` field `mCursor` of class `MusicPlaybackService` requires synthetic accessor"
2310 errorLine1=" if (service.mCursor != null) {"
2311 errorLine2=" ~~~~~~~">
2312 <location
2313 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2314 line="3028"
2315 column="37"/>
2316 </issue>
2317
2318 <issue
2319 id="SyntheticAccessor"
2320 message="Access to `private` field `mCursor` of class `MusicPlaybackService` requires synthetic accessor"
2321 errorLine1=" service.mCursor.close();"
2322 errorLine2=" ~~~~~~~">
2323 <location
2324 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2325 line="3029"
2326 column="37"/>
2327 </issue>
2328
2329 <issue
2330 id="SyntheticAccessor"
2331 message="Access to `private` field `mCursor` of class `MusicPlaybackService` requires synthetic accessor"
2332 errorLine1=" service.mCursor = null;"
2333 errorLine2=" ~~~~~~~">
2334 <location
2335 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2336 line="3030"
2337 column="37"/>
2338 </issue>
2339
2340 <issue
2341 id="SyntheticAccessor"
2342 message="Access to `private` field `mPlayPos` of class `MusicPlaybackService` requires synthetic accessor"
2343 errorLine1=" service.updateCursor(service.mPlaylist.get(service.mPlayPos).mId);"
2344 errorLine2=" ~~~~~~~~">
2345 <location
2346 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2347 line="3032"
2348 column="76"/>
2349 </issue>
2350
2351 <issue
2352 id="SyntheticAccessor"
2353 message="Access to `private` field `mPlaylist` of class `MusicPlaybackService` requires synthetic accessor"
2354 errorLine1=" service.updateCursor(service.mPlaylist.get(service.mPlayPos).mId);"
2355 errorLine2=" ~~~~~~~~~">
2356 <location
2357 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2358 line="3032"
2359 column="54"/>
2360 </issue>
2361
2362 <issue
2363 id="SyntheticAccessor"
2364 message="Access to `private` method `updateCursor` of class `MusicPlaybackService` requires synthetic accessor"
2365 errorLine1=" service.updateCursor(service.mPlaylist.get(service.mPlayPos).mId);"
2366 errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
2367 <location
2368 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2369 line="3032"
2370 column="25"/>
2371 </issue>
2372
2373 <issue
2374 id="SyntheticAccessor"
2375 message="Access to `private` method `notifyChange` of class `MusicPlaybackService` requires synthetic accessor"
2376 errorLine1=" service.notifyChange(META_CHANGED);"
2377 errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
2378 <location
2379 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2380 line="3033"
2381 column="25"/>
2382 </issue>
2383
2384 <issue
2385 id="SyntheticAccessor"
2386 message="Access to `private` field `mRepeatMode` of class `MusicPlaybackService` requires synthetic accessor"
2387 errorLine1=" if (service.mRepeatMode == REPEAT_CURRENT) {"
2388 errorLine2=" ~~~~~~~~~~~">
2389 <location
2390 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2391 line="3036"
2392 column="37"/>
2393 </issue>
2394
2395 <issue
2396 id="SyntheticAccessor"
2397 message="Access to `private` field `mLyrics` of class `MusicPlaybackService` requires synthetic accessor"
2398 errorLine1=" service.mLyrics = (String) msg.obj;"
2399 errorLine2=" ~~~~~~~">
2400 <location
2401 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2402 line="3044"
2403 column="33"/>
2404 </issue>
2405
2406 <issue
2407 id="SyntheticAccessor"
2408 message="Access to `private` method `notifyChange` of class `MusicPlaybackService` requires synthetic accessor"
2409 errorLine1=" service.notifyChange(NEW_LYRICS);"
2410 errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
2411 <location
2412 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2413 line="3045"
2414 column="25"/>
2415 </issue>
2416
2417 <issue
2418 id="SyntheticAccessor"
2419 message="Access to `private` method `togglePlayPause` of class `MusicPlaybackService` requires synthetic accessor"
2420 errorLine1=" service.togglePlayPause();"
2421 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
2422 <location
2423 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2424 line="3066"
2425 column="33"/>
2426 </issue>
2427
2428 <issue
2429 id="SyntheticAccessor"
2430 message="Access to `private` field `mHeadsetHookWakeLock` of class `MusicPlaybackService` requires synthetic accessor"
2431 errorLine1=" service.mHeadsetHookWakeLock.release();"
2432 errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
2433 <location
2434 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2435 line="3076"
2436 column="33"/>
2437 </issue>
2438
2439 <issue
2440 id="SyntheticAccessor"
2441 message="Access to `private` field `mHandler` of class `MultiPlayer` requires synthetic accessor"
2442 errorLine1=" mHandler.obtainMessage(LYRICS, text).sendToTarget();"
2443 errorLine2=" ~~~~~~~~">
2444 <location
2445 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2446 line="3170"
2447 column="21"/>
2448 </issue>
2449
2450 <issue
2451 id="SyntheticAccessor"
2452 message="Access to `private` field `mSession` of class `MusicPlaybackService` requires synthetic accessor"
2453 errorLine1=" mSession.setQueue(items);"
2454 errorLine2=" ~~~~~~~~">
2455 <location
2456 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2457 line="3722"
2458 column="17"/>
2459 </issue>
2460
2461 <issue
2462 id="SyntheticAccessor"
2463 message="Access to `private` constructor of class `ServiceToken` requires synthetic accessor"
2464 errorLine1=" ServiceToken token = new ServiceToken(context, binder);"
2465 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
2466 <location
2467 file="src/org/lineageos/eleven/utils/MusicUtils.java"
2468 line="119"
2469 column="34"/>
2470 </issue>
2471
2472 <issue
2473 id="SyntheticAccessor"
2474 message="Access to `private` field `mBinder` of class `ServiceToken` requires synthetic accessor"
2475 errorLine1=" final ServiceBinder binder = token.mBinder;"
2476 errorLine2=" ~~~~~~~">
2477 <location
2478 file="src/org/lineageos/eleven/utils/MusicUtils.java"
2479 line="133"
2480 column="44"/>
2481 </issue>
2482
2483 <issue
2484 id="SyntheticAccessor"
2485 message="Access to `private` method `discard` of class `ServiceToken` requires synthetic accessor"
2486 errorLine1=" token.discard();"
2487 errorLine2=" ~~~~~~~~~~~~~">
2488 <location
2489 file="src/org/lineageos/eleven/utils/MusicUtils.java"
2490 line="137"
2491 column="9"/>
2492 </issue>
2493
2494 <issue
2495 id="SyntheticAccessor"
2496 message="Access to `private` field `mBinder` of class `ServiceToken` requires synthetic accessor"
2497 errorLine1=" IElevenService service = token != null ? token.mBinder.mServiceConnection : null;"
2498 errorLine2=" ~~~~~~~">
2499 <location
2500 file="src/org/lineageos/eleven/utils/MusicUtils.java"
2501 line="202"
2502 column="60"/>
2503 </issue>
2504
2505 <issue
2506 id="SyntheticAccessor"
2507 message="Access to `private` field `mServiceConnection` of class `ServiceBinder` requires synthetic accessor"
2508 errorLine1=" IElevenService service = token != null ? token.mBinder.mServiceConnection : null;"
2509 errorLine2=" ~~~~~~~~~~~~~~~~~~">
2510 <location
2511 file="src/org/lineageos/eleven/utils/MusicUtils.java"
2512 line="202"
2513 column="68"/>
2514 </issue>
2515
2516 <issue
2517 id="SyntheticAccessor"
2518 message="Access to `private` member of class `Holder` requires synthetic accessor"
2519 errorLine1=" final Holder mHolder = new Holder();"
2520 errorLine2=" ~~~~~~~~~~~~">
2521 <location
2522 file="src/org/lineageos/eleven/adapters/PagerAdapter.java"
2523 line="73"
2524 column="32"/>
2525 </issue>
2526
2527 <issue
2528 id="SyntheticAccessor"
2529 message="Access to `private` field `mPlaylistId` of class `PlaylistDetailFragment` requires synthetic accessor"
2530 errorLine1=" return new Playlist(mPlaylistId, getTitle(), 0);"
2531 errorLine2=" ~~~~~~~~~~~">
2532 <location
2533 file="src/org/lineageos/eleven/ui/fragments/PlaylistDetailFragment.java"
2534 line="120"
2535 column="37"/>
2536 </issue>
2537
2538 <issue
2539 id="SyntheticAccessor"
2540 message="Access to `private` field `mAdapter` of class `PlaylistDetailFragment` requires synthetic accessor"
2541 errorLine1=" return mAdapter.getItem(position);"
2542 errorLine2=" ~~~~~~~~">
2543 <location
2544 file="src/org/lineageos/eleven/ui/fragments/PlaylistDetailFragment.java"
2545 line="142"
2546 column="24"/>
2547 </issue>
2548
2549 <issue
2550 id="SyntheticAccessor"
2551 message="Access to `private` field `mPlaylistId` of class `PlaylistDetailFragment` requires synthetic accessor"
2552 errorLine1=" return mPlaylistId;"
2553 errorLine2=" ~~~~~~~~~~~">
2554 <location
2555 file="src/org/lineageos/eleven/ui/fragments/PlaylistDetailFragment.java"
2556 line="155"
2557 column="24"/>
2558 </issue>
2559
2560 <issue
2561 id="SyntheticAccessor"
2562 message="Access to `private` method `remove` of class `PlaylistDetailFragment` requires synthetic accessor"
2563 errorLine1=" remove(mSong);"
2564 errorLine2=" ~~~~~~">
2565 <location
2566 file="src/org/lineageos/eleven/ui/fragments/PlaylistDetailFragment.java"
2567 line="165"
2568 column="17"/>
2569 </issue>
2570
2571 <issue
2572 id="SyntheticAccessor"
2573 message="Access to `private` field `mPlaylistId` of class `PlaylistDetailFragment` requires synthetic accessor"
2574 errorLine1=" MusicUtils.removeFromPlaylist(activity, mSong.mSongId, mPlaylistId);"
2575 errorLine2=" ~~~~~~~~~~~">
2576 <location
2577 file="src/org/lineageos/eleven/ui/fragments/PlaylistDetailFragment.java"
2578 line="168"
2579 column="76"/>
2580 </issue>
2581
2582 <issue
2583 id="SyntheticAccessor"
2584 message="Access to `private` field `mAdapter` of class `PlaylistFragment` requires synthetic accessor"
2585 errorLine1=" return mAdapter.getItem(position);"
2586 errorLine2=" ~~~~~~~~">
2587 <location
2588 file="src/org/lineageos/eleven/ui/fragments/PlaylistFragment.java"
2589 line="94"
2590 column="24"/>
2591 </issue>
2592
2593 <issue
2594 id="SyntheticAccessor"
2595 message="Access to `private` field `mAdapter` of class `QueueFragment` requires synthetic accessor"
2596 errorLine1=" mSong = mAdapter.getItem(mSelectedPosition);"
2597 errorLine2=" ~~~~~~~~">
2598 <location
2599 file="src/org/lineageos/eleven/ui/fragments/QueueFragment.java"
2600 line="127"
2601 column="25"/>
2602 </issue>
2603
2604 <issue
2605 id="SyntheticAccessor"
2606 message="Access to `private` field `mAdapter` of class `QueueFragment` requires synthetic accessor"
2607 errorLine1=" mReference.get().mAdapter.setCurrentlyPlayingTrack(MusicUtils.getCurrentTrack());"
2608 errorLine2=" ~~~~~~~~">
2609 <location
2610 file="src/org/lineageos/eleven/ui/fragments/QueueFragment.java"
2611 line="372"
2612 column="34"/>
2613 </issue>
2614
2615 <issue
2616 id="SyntheticAccessor"
2617 message="Access to `private` method `doRepeat` of class `RepeatingImageButton` requires synthetic accessor"
2618 errorLine1=" doRepeat(false);"
2619 errorLine2=" ~~~~~~~~">
2620 <location
2621 file="src/org/lineageos/eleven/widgets/RepeatingImageButton.java"
2622 line="140"
2623 column="13"/>
2624 </issue>
2625
2626 <issue
2627 id="SyntheticAccessor"
2628 message="Access to `private` field `mFirstPanel` of class `SlidingPanelActivity` requires synthetic accessor"
2629 errorLine1=" mFirstPanel.setSlidingEnabled(false);"
2630 errorLine2=" ~~~~~~~~~~~">
2631 <location
2632 file="src/org/lineageos/eleven/ui/activities/SlidingPanelActivity.java"
2633 line="155"
2634 column="21"/>
2635 </issue>
2636
2637 <issue
2638 id="SyntheticAccessor"
2639 message="Access to `private` field `mFirstPanel` of class `SlidingPanelActivity` requires synthetic accessor"
2640 errorLine1=" mFirstPanel.setSlidingEnabled(true);"
2641 errorLine2=" ~~~~~~~~~~~">
2642 <location
2643 file="src/org/lineageos/eleven/ui/activities/SlidingPanelActivity.java"
2644 line="169"
2645 column="17"/>
2646 </issue>
2647
2648 <issue
2649 id="SyntheticAccessor"
2650 message="Access to `private` member of class `DragHelperCallback` requires synthetic accessor"
2651 errorLine1=" mDragHelper = ViewDragHelper.create(this, 0.5f, new DragHelperCallback());"
2652 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~">
2653 <location
2654 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2655 line="380"
2656 column="57"/>
2657 </issue>
2658
2659 <issue
2660 id="SyntheticAccessor"
2661 message="Access to `private` field `mIsUnableToDrag` of class `SlidingUpPanelLayout` requires synthetic accessor"
2662 errorLine1=" if (mIsUnableToDrag) {"
2663 errorLine2=" ~~~~~~~~~~~~~~~">
2664 <location
2665 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2666 line="1039"
2667 column="17"/>
2668 </issue>
2669
2670 <issue
2671 id="SyntheticAccessor"
2672 message="Access to `private` field `mSlideableView` of class `SlidingUpPanelLayout` requires synthetic accessor"
2673 errorLine1=" return child == mSlideableView;"
2674 errorLine2=" ~~~~~~~~~~~~~~">
2675 <location
2676 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2677 line="1043"
2678 column="29"/>
2679 </issue>
2680
2681 <issue
2682 id="SyntheticAccessor"
2683 message="Access to `private` field `mDragHelper` of class `SlidingUpPanelLayout` requires synthetic accessor"
2684 errorLine1=" if (mDragHelper == null ||"
2685 errorLine2=" ~~~~~~~~~~~">
2686 <location
2687 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2688 line="1048"
2689 column="17"/>
2690 </issue>
2691
2692 <issue
2693 id="SyntheticAccessor"
2694 message="Access to `private` field `mDragHelper` of class `SlidingUpPanelLayout` requires synthetic accessor"
2695 errorLine1=" mDragHelper.getViewDragState() != ViewDragHelper.STATE_IDLE) {"
2696 errorLine2=" ~~~~~~~~~~~">
2697 <location
2698 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2699 line="1049"
2700 column="21"/>
2701 </issue>
2702
2703 <issue
2704 id="SyntheticAccessor"
2705 message="Access to `private` field `mSlideOffset` of class `SlidingUpPanelLayout` requires synthetic accessor"
2706 errorLine1=" mSlideOffset = computeSlideOffset(mSlideableView.getTop());"
2707 errorLine2=" ~~~~~~~~~~~~">
2708 <location
2709 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2710 line="1053"
2711 column="13"/>
2712 </issue>
2713
2714 <issue
2715 id="SyntheticAccessor"
2716 message="Access to `private` field `mSlideableView` of class `SlidingUpPanelLayout` requires synthetic accessor"
2717 errorLine1=" mSlideOffset = computeSlideOffset(mSlideableView.getTop());"
2718 errorLine2=" ~~~~~~~~~~~~~~">
2719 <location
2720 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2721 line="1053"
2722 column="47"/>
2723 </issue>
2724
2725 <issue
2726 id="SyntheticAccessor"
2727 message="Access to `private` method `computeSlideOffset` of class `SlidingUpPanelLayout` requires synthetic accessor"
2728 errorLine1=" mSlideOffset = computeSlideOffset(mSlideableView.getTop());"
2729 errorLine2=" ~~~~~~~~~~~~~~~~~~">
2730 <location
2731 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2732 line="1053"
2733 column="28"/>
2734 </issue>
2735
2736 <issue
2737 id="SyntheticAccessor"
2738 message="Access to `private` field `mSlideOffset` of class `SlidingUpPanelLayout` requires synthetic accessor"
2739 errorLine1=" if (mSlideOffset == 1) {"
2740 errorLine2=" ~~~~~~~~~~~~">
2741 <location
2742 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2743 line="1054"
2744 column="17"/>
2745 </issue>
2746
2747 <issue
2748 id="SyntheticAccessor"
2749 message="Access to `private` field `mSlideState` of class `SlidingUpPanelLayout` requires synthetic accessor"
2750 errorLine1=" if (mSlideState != SlideState.EXPANDED) {"
2751 errorLine2=" ~~~~~~~~~~~">
2752 <location
2753 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2754 line="1055"
2755 column="21"/>
2756 </issue>
2757
2758 <issue
2759 id="SyntheticAccessor"
2760 message="Access to `private` field `mSlideState` of class `SlidingUpPanelLayout` requires synthetic accessor"
2761 errorLine1=" mSlideState = SlideState.EXPANDED;"
2762 errorLine2=" ~~~~~~~~~~~">
2763 <location
2764 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2765 line="1057"
2766 column="21"/>
2767 </issue>
2768
2769 <issue
2770 id="SyntheticAccessor"
2771 message="Access to `private` field `mSlideableView` of class `SlidingUpPanelLayout` requires synthetic accessor"
2772 errorLine1=" dispatchOnPanelExpanded(mSlideableView);"
2773 errorLine2=" ~~~~~~~~~~~~~~">
2774 <location
2775 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2776 line="1058"
2777 column="45"/>
2778 </issue>
2779
2780 <issue
2781 id="SyntheticAccessor"
2782 message="Access to `private` field `mSlideOffset` of class `SlidingUpPanelLayout` requires synthetic accessor"
2783 errorLine1=" } else if (mSlideOffset == 0) {"
2784 errorLine2=" ~~~~~~~~~~~~">
2785 <location
2786 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2787 line="1060"
2788 column="24"/>
2789 </issue>
2790
2791 <issue
2792 id="SyntheticAccessor"
2793 message="Access to `private` field `mSlideState` of class `SlidingUpPanelLayout` requires synthetic accessor"
2794 errorLine1=" if (mSlideState != SlideState.COLLAPSED) {"
2795 errorLine2=" ~~~~~~~~~~~">
2796 <location
2797 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2798 line="1061"
2799 column="21"/>
2800 </issue>
2801
2802 <issue
2803 id="SyntheticAccessor"
2804 message="Access to `private` field `mSlideState` of class `SlidingUpPanelLayout` requires synthetic accessor"
2805 errorLine1=" mSlideState = SlideState.COLLAPSED;"
2806 errorLine2=" ~~~~~~~~~~~">
2807 <location
2808 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2809 line="1062"
2810 column="21"/>
2811 </issue>
2812
2813 <issue
2814 id="SyntheticAccessor"
2815 message="Access to `private` field `mSlideableView` of class `SlidingUpPanelLayout` requires synthetic accessor"
2816 errorLine1=" dispatchOnPanelCollapsed(mSlideableView);"
2817 errorLine2=" ~~~~~~~~~~~~~~">
2818 <location
2819 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2820 line="1063"
2821 column="46"/>
2822 </issue>
2823
2824 <issue
2825 id="SyntheticAccessor"
2826 message="Access to `private` field `mSlideOffset` of class `SlidingUpPanelLayout` requires synthetic accessor"
2827 errorLine1=" } else if (mSlideOffset &lt; 0) {"
2828 errorLine2=" ~~~~~~~~~~~~">
2829 <location
2830 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2831 line="1065"
2832 column="24"/>
2833 </issue>
2834
2835 <issue
2836 id="SyntheticAccessor"
2837 message="Access to `private` field `mSlideState` of class `SlidingUpPanelLayout` requires synthetic accessor"
2838 errorLine1=" mSlideState = SlideState.HIDDEN;"
2839 errorLine2=" ~~~~~~~~~~~">
2840 <location
2841 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2842 line="1066"
2843 column="17"/>
2844 </issue>
2845
2846 <issue
2847 id="SyntheticAccessor"
2848 message="Access to `private` field `mSlideableView` of class `SlidingUpPanelLayout` requires synthetic accessor"
2849 errorLine1=" mSlideableView.setVisibility(View.GONE);"
2850 errorLine2=" ~~~~~~~~~~~~~~">
2851 <location
2852 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2853 line="1067"
2854 column="17"/>
2855 </issue>
2856
2857 <issue
2858 id="SyntheticAccessor"
2859 message="Access to `private` field `mSlideableView` of class `SlidingUpPanelLayout` requires synthetic accessor"
2860 errorLine1=" dispatchOnPanelHidden(mSlideableView);"
2861 errorLine2=" ~~~~~~~~~~~~~~">
2862 <location
2863 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2864 line="1068"
2865 column="39"/>
2866 </issue>
2867
2868 <issue
2869 id="SyntheticAccessor"
2870 message="Access to `private` field `mSlideState` of class `SlidingUpPanelLayout` requires synthetic accessor"
2871 errorLine1=" } else if (mSlideState != SlideState.ANCHORED) {"
2872 errorLine2=" ~~~~~~~~~~~">
2873 <location
2874 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2875 line="1069"
2876 column="24"/>
2877 </issue>
2878
2879 <issue
2880 id="SyntheticAccessor"
2881 message="Access to `private` field `mSlideState` of class `SlidingUpPanelLayout` requires synthetic accessor"
2882 errorLine1=" mSlideState = SlideState.ANCHORED;"
2883 errorLine2=" ~~~~~~~~~~~">
2884 <location
2885 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2886 line="1071"
2887 column="17"/>
2888 </issue>
2889
2890 <issue
2891 id="SyntheticAccessor"
2892 message="Access to `private` field `mSlideableView` of class `SlidingUpPanelLayout` requires synthetic accessor"
2893 errorLine1=" dispatchOnPanelAnchored(mSlideableView);"
2894 errorLine2=" ~~~~~~~~~~~~~~">
2895 <location
2896 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2897 line="1072"
2898 column="41"/>
2899 </issue>
2900
2901 <issue
2902 id="SyntheticAccessor"
2903 message="Access to `private` method `onPanelDragged` of class `SlidingUpPanelLayout` requires synthetic accessor"
2904 errorLine1=" onPanelDragged(top);"
2905 errorLine2=" ~~~~~~~~~~~~~~">
2906 <location
2907 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2908 line="1083"
2909 column="13"/>
2910 </issue>
2911
2912 <issue
2913 id="SyntheticAccessor"
2914 message="Access to `private` field `mIsSlidingUp` of class `SlidingUpPanelLayout` requires synthetic accessor"
2915 errorLine1=" float direction = mIsSlidingUp ? -yvel : yvel;"
2916 errorLine2=" ~~~~~~~~~~~~">
2917 <location
2918 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2919 line="1092"
2920 column="31"/>
2921 </issue>
2922
2923 <issue
2924 id="SyntheticAccessor"
2925 message="Access to `private` method `computePanelTopPosition` of class `SlidingUpPanelLayout` requires synthetic accessor"
2926 errorLine1=" target = computePanelTopPosition(1.0f);"
2927 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
2928 <location
2929 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2930 line="1096"
2931 column="26"/>
2932 </issue>
2933
2934 <issue
2935 id="SyntheticAccessor"
2936 message="Access to `private` method `computePanelTopPosition` of class `SlidingUpPanelLayout` requires synthetic accessor"
2937 errorLine1=" target = computePanelTopPosition(0.0f);"
2938 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
2939 <location
2940 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2941 line="1099"
2942 column="26"/>
2943 </issue>
2944
2945 <issue
2946 id="SyntheticAccessor"
2947 message="Access to `private` field `mAnchorPoint` of class `SlidingUpPanelLayout` requires synthetic accessor"
2948 errorLine1=" } else if (mAnchorPoint != 1 &amp;&amp; mSlideOffset >= (1.f + mAnchorPoint) / 2) {"
2949 errorLine2=" ~~~~~~~~~~~~">
2950 <location
2951 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2952 line="1100"
2953 column="24"/>
2954 </issue>
2955
2956 <issue
2957 id="SyntheticAccessor"
2958 message="Access to `private` field `mAnchorPoint` of class `SlidingUpPanelLayout` requires synthetic accessor"
2959 errorLine1=" } else if (mAnchorPoint != 1 &amp;&amp; mSlideOffset >= (1.f + mAnchorPoint) / 2) {"
2960 errorLine2=" ~~~~~~~~~~~~">
2961 <location
2962 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2963 line="1100"
2964 column="68"/>
2965 </issue>
2966
2967 <issue
2968 id="SyntheticAccessor"
2969 message="Access to `private` field `mSlideOffset` of class `SlidingUpPanelLayout` requires synthetic accessor"
2970 errorLine1=" } else if (mAnchorPoint != 1 &amp;&amp; mSlideOffset >= (1.f + mAnchorPoint) / 2) {"
2971 errorLine2=" ~~~~~~~~~~~~">
2972 <location
2973 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2974 line="1100"
2975 column="45"/>
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="1102"
2986 column="26"/>
2987 </issue>
2988
2989 <issue
2990 id="SyntheticAccessor"
2991 message="Access to `private` field `mAnchorPoint` of class `SlidingUpPanelLayout` requires synthetic accessor"
2992 errorLine1=" } else if (mAnchorPoint == 1 &amp;&amp; mSlideOffset >= 0.5f) {"
2993 errorLine2=" ~~~~~~~~~~~~">
2994 <location
2995 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2996 line="1103"
2997 column="24"/>
2998 </issue>
2999
3000 <issue
3001 id="SyntheticAccessor"
3002 message="Access to `private` field `mSlideOffset` of class `SlidingUpPanelLayout` requires synthetic accessor"
3003 errorLine1=" } else if (mAnchorPoint == 1 &amp;&amp; mSlideOffset >= 0.5f) {"
3004 errorLine2=" ~~~~~~~~~~~~">
3005 <location
3006 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
3007 line="1103"
3008 column="45"/>
3009 </issue>
3010
3011 <issue
3012 id="SyntheticAccessor"
3013 message="Access to `private` method `computePanelTopPosition` of class `SlidingUpPanelLayout` requires synthetic accessor"
3014 errorLine1=" target = computePanelTopPosition(1.0f);"
3015 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
3016 <location
3017 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
3018 line="1105"
3019 column="26"/>
3020 </issue>
3021
3022 <issue
3023 id="SyntheticAccessor"
3024 message="Access to `private` field `mAnchorPoint` of class `SlidingUpPanelLayout` requires synthetic accessor"
3025 errorLine1=" } else if (mAnchorPoint != 1 &amp;&amp; mSlideOffset >= mAnchorPoint) {"
3026 errorLine2=" ~~~~~~~~~~~~">
3027 <location
3028 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
3029 line="1106"
3030 column="24"/>
3031 </issue>
3032
3033 <issue
3034 id="SyntheticAccessor"
3035 message="Access to `private` field `mAnchorPoint` of class `SlidingUpPanelLayout` requires synthetic accessor"
3036 errorLine1=" } else if (mAnchorPoint != 1 &amp;&amp; mSlideOffset >= mAnchorPoint) {"
3037 errorLine2=" ~~~~~~~~~~~~">
3038 <location
3039 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
3040 line="1106"
3041 column="61"/>
3042 </issue>
3043
3044 <issue
3045 id="SyntheticAccessor"
3046 message="Access to `private` field `mSlideOffset` of class `SlidingUpPanelLayout` requires synthetic accessor"
3047 errorLine1=" } else if (mAnchorPoint != 1 &amp;&amp; mSlideOffset >= mAnchorPoint) {"
3048 errorLine2=" ~~~~~~~~~~~~">
3049 <location
3050 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
3051 line="1106"
3052 column="45"/>
3053 </issue>
3054
3055 <issue
3056 id="SyntheticAccessor"
3057 message="Access to `private` field `mAnchorPoint` of class `SlidingUpPanelLayout` requires synthetic accessor"
3058 errorLine1=" target = computePanelTopPosition(mAnchorPoint);"
3059 errorLine2=" ~~~~~~~~~~~~">
3060 <location
3061 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
3062 line="1107"
3063 column="50"/>
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(mAnchorPoint);"
3070 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
3071 <location
3072 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
3073 line="1107"
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 / 2) {"
3081 errorLine2=" ~~~~~~~~~~~~">
3082 <location
3083 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
3084 line="1108"
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 / 2) {"
3092 errorLine2=" ~~~~~~~~~~~~">
3093 <location
3094 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
3095 line="1108"
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 / 2) {"
3103 errorLine2=" ~~~~~~~~~~~~">
3104 <location
3105 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
3106 line="1108"
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="1109"
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="1109"
3129 column="26"/>
3130 </issue>
3131
3132 <issue
3133 id="SyntheticAccessor"
3134 message="Access to `private` method `computePanelTopPosition` of class `SlidingUpPanelLayout` requires synthetic accessor"
3135 errorLine1=" target = computePanelTopPosition(0.0f);"
3136 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
3137 <location
3138 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
3139 line="1112"
3140 column="26"/>
3141 </issue>
3142
3143 <issue
3144 id="SyntheticAccessor"
3145 message="Access to `private` field `mDragHelper` of class `SlidingUpPanelLayout` requires synthetic accessor"
3146 errorLine1=" if (mDragHelper != null) {"
3147 errorLine2=" ~~~~~~~~~~~">
3148 <location
3149 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
3150 line="1115"
3151 column="17"/>
3152 </issue>
3153
3154 <issue
3155 id="SyntheticAccessor"
3156 message="Access to `private` field `mDragHelper` of class `SlidingUpPanelLayout` requires synthetic accessor"
3157 errorLine1=" mDragHelper.settleCapturedViewAt(releasedChild.getLeft(), target);"
3158 errorLine2=" ~~~~~~~~~~~">
3159 <location
3160 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
3161 line="1116"
3162 column="17"/>
3163 </issue>
3164
3165 <issue
3166 id="SyntheticAccessor"
3167 message="Access to `private` field `mSlideRange` of class `SlidingUpPanelLayout` requires synthetic accessor"
3168 errorLine1=" return mSlideRange;"
3169 errorLine2=" ~~~~~~~~~~~">
3170 <location
3171 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
3172 line="1123"
3173 column="20"/>
3174 </issue>
3175
3176 <issue
3177 id="SyntheticAccessor"
3178 message="Access to `private` method `computePanelTopPosition` of class `SlidingUpPanelLayout` requires synthetic accessor"
3179 errorLine1=" final int collapsedTop = computePanelTopPosition(0.f);"
3180 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
3181 <location
3182 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
3183 line="1128"
3184 column="38"/>
3185 </issue>
3186
3187 <issue
3188 id="SyntheticAccessor"
3189 message="Access to `private` method `computePanelTopPosition` of class `SlidingUpPanelLayout` requires synthetic accessor"
3190 errorLine1=" final int expandedTop = computePanelTopPosition(1.0f);"
3191 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
3192 <location
3193 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
3194 line="1129"
3195 column="37"/>
3196 </issue>
3197
3198 <issue
3199 id="SyntheticAccessor"
3200 message="Access to `private` field `mIsSlidingUp` of class `SlidingUpPanelLayout` requires synthetic accessor"
3201 errorLine1=" if (mIsSlidingUp) {"
3202 errorLine2=" ~~~~~~~~~~~~">
3203 <location
3204 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
3205 line="1130"
3206 column="17"/>
3207 </issue>
3208
3209 <issue
3210 id="SyntheticAccessor"
3211 message="Access to `private` constructor of class `SavedState` requires synthetic accessor"
3212 errorLine1=" return new SavedState(in);"
3213 errorLine2=" ~~~~~~~~~~~~~~~~~~">
3214 <location
3215 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
3216 line="1189"
3217 column="32"/>
3218 </issue>
3219
3220 <issue
3221 id="SyntheticAccessor"
3222 message="Access to `private` method `onLoaded` of class `SrtManager` requires synthetic accessor"
3223 errorLine1=" onLoaded(this, SrtParser.getSrtEntries(f));"
3224 errorLine2=" ~~~~~~~~">
3225 <location
3226 file="src/org/lineageos/eleven/utils/SrtManager.java"
3227 line="90"
3228 column="17"/>
3229 </issue>
3230
3231 <issue
3232 id="SyntheticAccessor"
3233 message="Access to `private` field `charset` of class `StrictLineReader` requires synthetic accessor"
3234 errorLine1=" return new String(buf, 0, length, charset.name());"
3235 errorLine2=" ~~~~~~~">
3236 <location
3237 file="src/org/lineageos/eleven/cache/disklrucache/StrictLineReader.java"
3238 line="153"
3239 column="47"/>
3240 </issue>
3241
3242 <issue
3243 id="SyntheticAccessor"
3244 message="Access to `private` field `mValueAnimators` of class `VisualizerView` requires synthetic accessor"
3245 errorLine1=" mValueAnimators[i].cancel();"
3246 errorLine2=" ~~~~~~~~~~~~~~~">
3247 <location
3248 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
3249 line="73"
3250 column="25"/>
3251 </issue>
3252
3253 <issue
3254 id="SyntheticAccessor"
3255 message="Access to `private` field `mValueAnimators` of class `VisualizerView` requires synthetic accessor"
3256 errorLine1=" mValueAnimators[i].setFloatValues("
3257 errorLine2=" ~~~~~~~~~~~~~~~">
3258 <location
3259 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
3260 line="80"
3261 column="25"/>
3262 </issue>
3263
3264 <issue
3265 id="SyntheticAccessor"
3266 message="Access to `private` field `mFFTPoints` of class `VisualizerView` requires synthetic accessor"
3267 errorLine1=" mFFTPoints[i * 4 + 1],"
3268 errorLine2=" ~~~~~~~~~~">
3269 <location
3270 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
3271 line="81"
3272 column="33"/>
3273 </issue>
3274
3275 <issue
3276 id="SyntheticAccessor"
3277 message="Access to `private` field `mFFTPoints` of class `VisualizerView` requires synthetic accessor"
3278 errorLine1=" mFFTPoints[3] - (dbValue * 16f));"
3279 errorLine2=" ~~~~~~~~~~">
3280 <location
3281 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
3282 line="82"
3283 column="33"/>
3284 </issue>
3285
3286 <issue
3287 id="SyntheticAccessor"
3288 message="Access to `private` field `mValueAnimators` of class `VisualizerView` requires synthetic accessor"
3289 errorLine1=" mValueAnimators[i].start();"
3290 errorLine2=" ~~~~~~~~~~~~~~~">
3291 <location
3292 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
3293 line="83"
3294 column="25"/>
3295 </issue>
3296
3297 <issue
3298 id="SyntheticAccessor"
3299 message="Access to `private` field `mVisualizer` of class `VisualizerView` requires synthetic accessor"
3300 errorLine1=" mVisualizer = new Visualizer(0);"
3301 errorLine2=" ~~~~~~~~~~~">
3302 <location
3303 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
3304 line="92"
3305 column="17"/>
3306 </issue>
3307
3308 <issue
3309 id="SyntheticAccessor"
3310 message="Access to `private` field `TAG` of class `VisualizerView` requires synthetic accessor"
3311 errorLine1=" Log.e(TAG, &quot;error initializing visualizer&quot;, e);"
3312 errorLine2=" ~~~">
3313 <location
3314 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
3315 line="94"
3316 column="23"/>
3317 </issue>
3318
3319 <issue
3320 id="SyntheticAccessor"
3321 message="Access to `private` field `mVisualizer` of class `VisualizerView` requires synthetic accessor"
3322 errorLine1=" mVisualizer.setEnabled(false);"
3323 errorLine2=" ~~~~~~~~~~~">
3324 <location
3325 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
3326 line="98"
3327 column="13"/>
3328 </issue>
3329
3330 <issue
3331 id="SyntheticAccessor"
3332 message="Access to `private` field `mVisualizer` of class `VisualizerView` requires synthetic accessor"
3333 errorLine1=" mVisualizer.setCaptureSize(66);"
3334 errorLine2=" ~~~~~~~~~~~">
3335 <location
3336 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
3337 line="99"
3338 column="13"/>
3339 </issue>
3340
3341 <issue
3342 id="SyntheticAccessor"
3343 message="Access to `private` field `mVisualizerListener` of class `VisualizerView` requires synthetic accessor"
3344 errorLine1=" mVisualizer.setDataCaptureListener(mVisualizerListener, Visualizer.getMaxCaptureRate(),"
3345 errorLine2=" ~~~~~~~~~~~~~~~~~~~">
3346 <location
3347 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
3348 line="100"
3349 column="48"/>
3350 </issue>
3351
3352 <issue
3353 id="SyntheticAccessor"
3354 message="Access to `private` field `mVisualizer` of class `VisualizerView` requires synthetic accessor"
3355 errorLine1=" mVisualizer.setDataCaptureListener(mVisualizerListener, Visualizer.getMaxCaptureRate(),"
3356 errorLine2=" ~~~~~~~~~~~">
3357 <location
3358 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
3359 line="100"
3360 column="13"/>
3361 </issue>
3362
3363 <issue
3364 id="SyntheticAccessor"
3365 message="Access to `private` field `mVisualizer` of class `VisualizerView` requires synthetic accessor"
3366 errorLine1=" mVisualizer.setEnabled(true);"
3367 errorLine2=" ~~~~~~~~~~~">
3368 <location
3369 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
3370 line="102"
3371 column="13"/>
3372 </issue>
3373
3374 <issue
3375 id="SyntheticAccessor"
3376 message="Access to `private` field `mUnlinkVisualizer` of class `VisualizerView` requires synthetic accessor"
3377 errorLine1=" AsyncTask.execute(mUnlinkVisualizer);"
3378 errorLine2=" ~~~~~~~~~~~~~~~~~">
3379 <location
3380 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
3381 line="109"
3382 column="31"/>
3383 </issue>
3384
3385 <issue
3386 id="SyntheticAccessor"
3387 message="Access to `private` field `mVisualizer` of class `VisualizerView` requires synthetic accessor"
3388 errorLine1=" if (mVisualizer != null) {"
3389 errorLine2=" ~~~~~~~~~~~">
3390 <location
3391 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
3392 line="116"
3393 column="17"/>
3394 </issue>
3395
3396 <issue
3397 id="SyntheticAccessor"
3398 message="Access to `private` field `mVisualizer` of class `VisualizerView` requires synthetic accessor"
3399 errorLine1=" mVisualizer.setEnabled(false);"
3400 errorLine2=" ~~~~~~~~~~~">
3401 <location
3402 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
3403 line="117"
3404 column="17"/>
3405 </issue>
3406
3407 <issue
3408 id="SyntheticAccessor"
3409 message="Access to `private` field `mVisualizer` of class `VisualizerView` requires synthetic accessor"
3410 errorLine1=" mVisualizer.release();"
3411 errorLine2=" ~~~~~~~~~~~">
3412 <location
3413 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
3414 line="118"
3415 column="17"/>
3416 </issue>
3417
3418 <issue
3419 id="SyntheticAccessor"
3420 message="Access to `private` field `mVisualizer` of class `VisualizerView` requires synthetic accessor"
3421 errorLine1=" mVisualizer = null;"
3422 errorLine2=" ~~~~~~~~~~~">
3423 <location
3424 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
3425 line="119"
3426 column="17"/>
3427 </issue>
3428
3429 <issue
3430 id="DuplicateStrings"
3431 message="Duplicate string value `Hljómplötur`, used in `header_albums` and `page_albums`"
3432 errorLine1=" &lt;string name=&quot;page_albums&quot;>Hljómplötur&lt;/string>"
3433 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3434 <location
3435 file="res/values-is/strings.xml"
3436 line="20"
3437 column="5"/>
3438 <location
3439 file="res/values-is/strings.xml"
3440 line="21"
3441 column="5"
3442 message="Duplicates value in `page_albums`"/>
3443 </issue>
3444
3445 <issue
3446 id="DuplicateStrings"
3447 message="Duplicate string value `เพลง`, used in `app_name` and `page_songs`"
3448 errorLine1=" &lt;string name=&quot;app_name&quot;>เพลง&lt;/string>"
3449 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3450 <location
3451 file="res/values-th/strings.xml"
3452 line="20"
3453 column="5"/>
3454 <location
3455 file="res/values-th/strings.xml"
3456 line="23"
3457 column="5"
3458 message="Duplicates value in `app_name`"/>
3459 </issue>
3460
3461 <issue
3462 id="DuplicateStrings"
3463 message="Duplicate string value `음악`, used in `app_name` and `page_songs`"
3464 errorLine1=" &lt;string name=&quot;app_name&quot;>음악&lt;/string>"
3465 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3466 <location
3467 file="res/values-ko/strings.xml"
3468 line="20"
3469 column="5"/>
3470 <location
3471 file="res/values-ko/strings.xml"
3472 line="23"
3473 column="5"
3474 message="Duplicates value in `app_name`"/>
3475 </issue>
3476
3477 <issue
3478 id="DuplicateStrings"
3479 message="Duplicate string value `Albumoj`, used in `header_albums` and `page_albums`"
3480 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albumoj&lt;/string>"
3481 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3482 <location
3483 file="res/values-eo/strings.xml"
3484 line="21"
3485 column="5"/>
3486 <location
3487 file="res/values-eo/strings.xml"
3488 line="23"
3489 column="5"
3490 message="Duplicates value in `page_albums`"/>
3491 </issue>
3492
3493 <issue
3494 id="DuplicateStrings"
3495 message="Duplicate string value `Artis`, used in `page_artists` and `sort_order_entry_artist`"
3496 errorLine1=" &lt;string name=&quot;page_artists&quot;>Artis&lt;/string>"
3497 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3498 <location
3499 file="res/values-in/strings.xml"
3500 line="21"
3501 column="5"/>
3502 <location
3503 file="res/values-in/strings.xml"
3504 line="47"
3505 column="5"
3506 message="Duplicates value in `page_artists`"/>
3507 </issue>
3508
3509 <issue
3510 id="DuplicateStrings"
3511 message="Duplicate string value `Nghệ sĩ`, used in `page_artists` and `sort_order_entry_artist`"
3512 errorLine1=" &lt;string name=&quot;page_artists&quot;>Nghệ sĩ&lt;/string>"
3513 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3514 <location
3515 file="res/values-vi/strings.xml"
3516 line="21"
3517 column="5"/>
3518 <location
3519 file="res/values-vi/strings.xml"
3520 line="47"
3521 column="5"
3522 message="Duplicates value in `page_artists`"/>
3523 </issue>
3524
3525 <issue
3526 id="DuplicateStrings"
3527 message="Duplicate string value `سەنئەتكار`, used in `page_artists` and `sort_order_entry_artist`"
3528 errorLine1=" &lt;string name=&quot;page_artists&quot;>سەنئەتكار&lt;/string>"
3529 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3530 <location
3531 file="res/values-ug/strings.xml"
3532 line="21"
3533 column="5"/>
3534 <location
3535 file="res/values-ug/strings.xml"
3536 line="47"
3537 column="5"
3538 message="Duplicates value in `page_artists`"/>
3539 </issue>
3540
3541 <issue
3542 id="DuplicateStrings"
3543 message="Duplicate string value `कलाकार`, used in `page_artists` and `sort_order_entry_artist`"
3544 errorLine1=" &lt;string name=&quot;page_artists&quot;>कलाकार&lt;/string>"
3545 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3546 <location
3547 file="res/values-hi/strings.xml"
3548 line="21"
3549 column="5"/>
3550 <location
3551 file="res/values-hi/strings.xml"
3552 line="47"
3553 column="5"
3554 message="Duplicates value in `page_artists`"/>
3555 </issue>
3556
3557 <issue
3558 id="DuplicateStrings"
3559 message="Duplicate string value `कलाकार`, used in `page_artists` and `sort_order_entry_artist`"
3560 errorLine1=" &lt;string name=&quot;page_artists&quot;>कलाकार&lt;/string>"
3561 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3562 <location
3563 file="res/values-mr/strings.xml"
3564 line="21"
3565 column="5"/>
3566 <location
3567 file="res/values-mr/strings.xml"
3568 line="47"
3569 column="5"
3570 message="Duplicates value in `page_artists`"/>
3571 </issue>
3572
3573 <issue
3574 id="DuplicateStrings"
3575 message="Duplicate string value `ศิลปิน`, used in `page_artists` and `sort_order_entry_artist`"
3576 errorLine1=" &lt;string name=&quot;page_artists&quot;>ศิลปิน&lt;/string>"
3577 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3578 <location
3579 file="res/values-th/strings.xml"
3580 line="21"
3581 column="5"/>
3582 <location
3583 file="res/values-th/strings.xml"
3584 line="47"
3585 column="5"
3586 message="Duplicates value in `page_artists`"/>
3587 </issue>
3588
3589 <issue
3590 id="DuplicateStrings"
3591 message="Duplicate string value `アーティスト`, used in `page_artists` and `sort_order_entry_artist`"
3592 errorLine1=" &lt;string name=&quot;page_artists&quot;>アーティスト&lt;/string>"
3593 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3594 <location
3595 file="res/values-ja/strings.xml"
3596 line="21"
3597 column="5"/>
3598 <location
3599 file="res/values-ja/strings.xml"
3600 line="47"
3601 column="5"
3602 message="Duplicates value in `page_artists`"/>
3603 </issue>
3604
3605 <issue
3606 id="DuplicateStrings"
3607 message="Duplicate string value `演出者`, used in `page_artists` and `sort_order_entry_artist`"
3608 errorLine1=" &lt;string name=&quot;page_artists&quot;>演出者&lt;/string>"
3609 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3610 <location
3611 file="res/values-zh-rTW/strings.xml"
3612 line="21"
3613 column="5"/>
3614 <location
3615 file="res/values-zh-rTW/strings.xml"
3616 line="47"
3617 column="5"
3618 message="Duplicates value in `page_artists`"/>
3619 </issue>
3620
3621 <issue
3622 id="DuplicateStrings"
3623 message="Duplicate string value `艺术家`, used in `page_artists` and `sort_order_entry_artist`"
3624 errorLine1=" &lt;string name=&quot;page_artists&quot;>艺术家&lt;/string>"
3625 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3626 <location
3627 file="res/values-zh-rCN/strings.xml"
3628 line="21"
3629 column="5"/>
3630 <location
3631 file="res/values-zh-rCN/strings.xml"
3632 line="47"
3633 column="5"
3634 message="Duplicates value in `page_artists`"/>
3635 </issue>
3636
3637 <issue
3638 id="DuplicateStrings"
3639 message="Duplicate string value `아티스트`, used in `page_artists` and `sort_order_entry_artist`"
3640 errorLine1=" &lt;string name=&quot;page_artists&quot;>아티스트&lt;/string>"
3641 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3642 <location
3643 file="res/values-ko/strings.xml"
3644 line="21"
3645 column="5"/>
3646 <location
3647 file="res/values-ko/strings.xml"
3648 line="47"
3649 column="5"
3650 message="Duplicates value in `page_artists`"/>
3651 </issue>
3652
3653 <issue
3654 id="DuplicateStrings"
3655 message="Duplicate string value `Alba`, used in `header_albums`, `page_albums` and `sort_order_entry_album`"
3656 errorLine1=" &lt;string name=&quot;page_albums&quot;>Alba&lt;/string>"
3657 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3658 <location
3659 file="res/values-cs/strings.xml"
3660 line="22"
3661 column="5"/>
3662 <location
3663 file="res/values-cs/strings.xml"
3664 line="26"
3665 column="5"
3666 message="Duplicates value in `page_albums`"/>
3667 <location
3668 file="res/values-cs/strings.xml"
3669 line="48"
3670 column="5"
3671 message="Duplicates value in `page_albums`"/>
3672 </issue>
3673
3674 <issue
3675 id="DuplicateStrings"
3676 message="Duplicate string value `Albaman`, used in `header_albums` and `page_albums`"
3677 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albaman&lt;/string>"
3678 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3679 <location
3680 file="res/values-gd/strings.xml"
3681 line="22"
3682 column="5"/>
3683 <location
3684 file="res/values-gd/strings.xml"
3685 line="26"
3686 column="5"
3687 message="Duplicates value in `page_albums`"/>
3688 </issue>
3689
3690 <issue
3691 id="DuplicateStrings"
3692 message="Duplicate string value `Alben`, used in `header_albums` and `page_albums`"
3693 errorLine1=" &lt;string name=&quot;page_albums&quot;>Alben&lt;/string>"
3694 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3695 <location
3696 file="res/values-de/strings.xml"
3697 line="22"
3698 column="5"/>
3699 <location
3700 file="res/values-de/strings.xml"
3701 line="26"
3702 column="5"
3703 message="Duplicates value in `page_albums`"/>
3704 </issue>
3705
3706 <issue
3707 id="DuplicateStrings"
3708 message="Duplicate string value `Alben`, used in `header_albums` and `page_albums`"
3709 errorLine1=" &lt;string name=&quot;page_albums&quot;>Alben&lt;/string>"
3710 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3711 <location
3712 file="res/values-lb/strings.xml"
3713 line="22"
3714 column="5"/>
3715 <location
3716 file="res/values-lb/strings.xml"
3717 line="26"
3718 column="5"
3719 message="Duplicates value in `page_albums`"/>
3720 </issue>
3721
3722 <issue
3723 id="DuplicateStrings"
3724 message="Duplicate string value `Albomlar`, used in `header_albums` and `page_albums`"
3725 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albomlar&lt;/string>"
3726 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3727 <location
3728 file="res/values-az/strings.xml"
3729 line="22"
3730 column="5"/>
3731 <location
3732 file="res/values-az/strings.xml"
3733 line="26"
3734 column="5"
3735 message="Duplicates value in `page_albums`"/>
3736 </issue>
3737
3738 <issue
3739 id="DuplicateStrings"
3740 message="Duplicate string value `Album`, used in `header_albums`, `page_albums` and `sort_order_entry_album`"
3741 errorLine1=" &lt;string name=&quot;page_albums&quot;>Album&lt;/string>"
3742 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3743 <location
3744 file="res/values-da/strings.xml"
3745 line="22"
3746 column="5"/>
3747 <location
3748 file="res/values-da/strings.xml"
3749 line="26"
3750 column="5"
3751 message="Duplicates value in `page_albums`"/>
3752 <location
3753 file="res/values-da/strings.xml"
3754 line="48"
3755 column="5"
3756 message="Duplicates value in `page_albums`"/>
3757 </issue>
3758
3759 <issue
3760 id="DuplicateStrings"
3761 message="Duplicate string value `Album`, used in `header_albums`, `page_albums` and `sort_order_entry_album`"
3762 errorLine1=" &lt;string name=&quot;page_albums&quot;>Album&lt;/string>"
3763 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3764 <location
3765 file="res/values-in/strings.xml"
3766 line="22"
3767 column="5"/>
3768 <location
3769 file="res/values-in/strings.xml"
3770 line="26"
3771 column="5"
3772 message="Duplicates value in `page_albums`"/>
3773 <location
3774 file="res/values-in/strings.xml"
3775 line="48"
3776 column="5"
3777 message="Duplicates value in `page_albums`"/>
3778 </issue>
3779
3780 <issue
3781 id="DuplicateStrings"
3782 message="Duplicate string value `Album`, used in `header_albums`, `page_albums` and `sort_order_entry_album`"
3783 errorLine1=" &lt;string name=&quot;page_albums&quot;>Album&lt;/string>"
3784 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3785 <location
3786 file="res/values-it/strings.xml"
3787 line="22"
3788 column="5"/>
3789 <location
3790 file="res/values-it/strings.xml"
3791 line="26"
3792 column="5"
3793 message="Duplicates value in `page_albums`"/>
3794 <location
3795 file="res/values-it/strings.xml"
3796 line="48"
3797 column="5"
3798 message="Duplicates value in `page_albums`"/>
3799 </issue>
3800
3801 <issue
3802 id="DuplicateStrings"
3803 message="Duplicate string value `Album`, used in `header_albums`, `page_albums` and `sort_order_entry_album`"
3804 errorLine1=" &lt;string name=&quot;page_albums&quot;>Album&lt;/string>"
3805 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3806 <location
3807 file="res/values-sv/strings.xml"
3808 line="22"
3809 column="5"/>
3810 <location
3811 file="res/values-sv/strings.xml"
3812 line="26"
3813 column="5"
3814 message="Duplicates value in `page_albums`"/>
3815 <location
3816 file="res/values-sv/strings.xml"
3817 line="48"
3818 column="5"
3819 message="Duplicates value in `page_albums`"/>
3820 </issue>
3821
3822 <issue
3823 id="DuplicateStrings"
3824 message="Duplicate string value `Album`, used in `header_albums`, `page_albums` and `sort_order_entry_album`"
3825 errorLine1=" &lt;string name=&quot;page_albums&quot;>Album&lt;/string>"
3826 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3827 <location
3828 file="res/values-vi/strings.xml"
3829 line="22"
3830 column="5"/>
3831 <location
3832 file="res/values-vi/strings.xml"
3833 line="26"
3834 column="5"
3835 message="Duplicates value in `page_albums`"/>
3836 <location
3837 file="res/values-vi/strings.xml"
3838 line="48"
3839 column="5"
3840 message="Duplicates value in `page_albums`"/>
3841 </issue>
3842
3843 <issue
3844 id="DuplicateStrings"
3845 message="Duplicate string value `Albumai`, used in `header_albums` and `page_albums`"
3846 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albumai&lt;/string>"
3847 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3848 <location
3849 file="res/values-lt/strings.xml"
3850 line="22"
3851 column="5"/>
3852 <location
3853 file="res/values-lt/strings.xml"
3854 line="26"
3855 column="5"
3856 message="Duplicates value in `page_albums`"/>
3857 </issue>
3858
3859 <issue
3860 id="DuplicateStrings"
3861 message="Duplicate string value `Albumak`, used in `header_albums` and `page_albums`"
3862 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albumak&lt;/string>"
3863 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3864 <location
3865 file="res/values-eu/strings.xml"
3866 line="22"
3867 column="5"/>
3868 <location
3869 file="res/values-eu/strings.xml"
3870 line="26"
3871 column="5"
3872 message="Duplicates value in `page_albums`"/>
3873 </issue>
3874
3875 <issue
3876 id="DuplicateStrings"
3877 message="Duplicate string value `Albume`, used in `header_albums` and `page_albums`"
3878 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albume&lt;/string>"
3879 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3880 <location
3881 file="res/values-ro/strings.xml"
3882 line="22"
3883 column="5"/>
3884 <location
3885 file="res/values-ro/strings.xml"
3886 line="26"
3887 column="5"
3888 message="Duplicates value in `page_albums`"/>
3889 </issue>
3890
3891 <issue
3892 id="DuplicateStrings"
3893 message="Duplicate string value `Albumer`, used in `header_albums` and `page_albums`"
3894 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albumer&lt;/string>"
3895 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3896 <location
3897 file="res/values-nb/strings.xml"
3898 line="22"
3899 column="5"/>
3900 <location
3901 file="res/values-nb/strings.xml"
3902 line="26"
3903 column="5"
3904 message="Duplicates value in `page_albums`"/>
3905 </issue>
3906
3907 <issue
3908 id="DuplicateStrings"
3909 message="Duplicate string value `Albumet`, used in `header_albums` and `page_albums`"
3910 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albumet&lt;/string>"
3911 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3912 <location
3913 file="res/values-sq/strings.xml"
3914 line="22"
3915 column="5"/>
3916 <location
3917 file="res/values-sq/strings.xml"
3918 line="25"
3919 column="5"
3920 message="Duplicates value in `page_albums`"/>
3921 </issue>
3922
3923 <issue
3924 id="DuplicateStrings"
3925 message="Duplicate string value `Albumi`, used in `header_albums` and `page_albums`"
3926 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albumi&lt;/string>"
3927 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3928 <location
3929 file="res/values-hr/strings.xml"
3930 line="22"
3931 column="5"/>
3932 <location
3933 file="res/values-hr/strings.xml"
3934 line="26"
3935 column="5"
3936 message="Duplicates value in `page_albums`"/>
3937 </issue>
3938
3939 <issue
3940 id="DuplicateStrings"
3941 message="Duplicate string value `Albumi`, used in `header_albums` and `page_albums`"
3942 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albumi&lt;/string>"
3943 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3944 <location
3945 file="res/values-lv/strings.xml"
3946 line="22"
3947 column="5"/>
3948 <location
3949 file="res/values-lv/strings.xml"
3950 line="26"
3951 column="5"
3952 message="Duplicates value in `page_albums`"/>
3953 </issue>
3954
3955 <issue
3956 id="DuplicateStrings"
3957 message="Duplicate string value `Albumi`, used in `header_albums` and `page_albums`"
3958 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albumi&lt;/string>"
3959 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3960 <location
3961 file="res/values-sl/strings.xml"
3962 line="22"
3963 column="5"/>
3964 <location
3965 file="res/values-sl/strings.xml"
3966 line="26"
3967 column="5"
3968 message="Duplicates value in `page_albums`"/>
3969 </issue>
3970
3971 <issue
3972 id="DuplicateStrings"
3973 message="Duplicate string value `Albumid`, used in `header_albums` and `page_albums`"
3974 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albumid&lt;/string>"
3975 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3976 <location
3977 file="res/values-et/strings.xml"
3978 line="22"
3979 column="5"/>
3980 <location
3981 file="res/values-et/strings.xml"
3982 line="26"
3983 column="5"
3984 message="Duplicates value in `page_albums`"/>
3985 </issue>
3986
3987 <issue
3988 id="DuplicateStrings"
3989 message="Duplicate string value `Albumok`, used in `header_albums` and `page_albums`"
3990 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albumok&lt;/string>"
3991 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3992 <location
3993 file="res/values-hu/strings.xml"
3994 line="22"
3995 column="5"/>
3996 <location
3997 file="res/values-hu/strings.xml"
3998 line="26"
3999 column="5"
4000 message="Duplicates value in `page_albums`"/>
4001 </issue>
4002
4003 <issue
4004 id="DuplicateStrings"
4005 message="Duplicate string value `Albums`, used in `header_albums` and `page_albums`"
4006 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albums&lt;/string>"
4007 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4008 <location
4009 file="res/values-af/strings.xml"
4010 line="22"
4011 column="5"/>
4012 <location
4013 file="res/values-af/strings.xml"
4014 line="26"
4015 column="5"
4016 message="Duplicates value in `page_albums`"/>
4017 </issue>
4018
4019 <issue
4020 id="DuplicateStrings"
4021 message="Duplicate string value `Albums`, used in `header_albums` and `page_albums`"
4022 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albums&lt;/string>"
4023 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4024 <location
4025 file="res/values-en-rAU/strings.xml"
4026 line="22"
4027 column="5"/>
4028 <location
4029 file="res/values-en-rAU/strings.xml"
4030 line="26"
4031 column="5"
4032 message="Duplicates value in `page_albums`"/>
4033 </issue>
4034
4035 <issue
4036 id="DuplicateStrings"
4037 message="Duplicate string value `Albums`, used in `header_albums` and `page_albums`"
4038 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albums&lt;/string>"
4039 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4040 <location
4041 file="res/values-en-rCA/strings.xml"
4042 line="22"
4043 column="5"/>
4044 <location
4045 file="res/values-en-rCA/strings.xml"
4046 line="26"
4047 column="5"
4048 message="Duplicates value in `page_albums`"/>
4049 </issue>
4050
4051 <issue
4052 id="DuplicateStrings"
4053 message="Duplicate string value `Albums`, used in `header_albums` and `page_albums`"
4054 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albums&lt;/string>"
4055 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4056 <location
4057 file="res/values-en-rGB/strings.xml"
4058 line="22"
4059 column="5"/>
4060 <location
4061 file="res/values-en-rGB/strings.xml"
4062 line="26"
4063 column="5"
4064 message="Duplicates value in `page_albums`"/>
4065 </issue>
4066
4067 <issue
4068 id="DuplicateStrings"
4069 message="Duplicate string value `Albums`, used in `header_albums` and `page_albums`"
4070 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albums&lt;/string>"
4071 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4072 <location
4073 file="res/values-en-rIN/strings.xml"
4074 line="22"
4075 column="5"/>
4076 <location
4077 file="res/values-en-rIN/strings.xml"
4078 line="26"
4079 column="5"
4080 message="Duplicates value in `page_albums`"/>
4081 </issue>
4082
4083 <issue
4084 id="DuplicateStrings"
4085 message="Duplicate string value `Albums`, used in `header_albums` and `page_albums`"
4086 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albums&lt;/string>"
4087 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4088 <location
4089 file="res/values-fr/strings.xml"
4090 line="22"
4091 column="5"/>
4092 <location
4093 file="res/values-fr/strings.xml"
4094 line="26"
4095 column="5"
4096 message="Duplicates value in `page_albums`"/>
4097 </issue>
4098
4099 <issue
4100 id="DuplicateStrings"
4101 message="Duplicate string value `Albums`, used in `header_albums` and `page_albums`"
4102 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albums&lt;/string>"
4103 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4104 <location
4105 file="res/values-fy-rNL/strings.xml"
4106 line="22"
4107 column="5"/>
4108 <location
4109 file="res/values-fy-rNL/strings.xml"
4110 line="26"
4111 column="5"
4112 message="Duplicates value in `page_albums`"/>
4113 </issue>
4114
4115 <issue
4116 id="DuplicateStrings"
4117 message="Duplicate string value `Albums`, used in `header_albums` and `page_albums`"
4118 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albums&lt;/string>"
4119 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4120 <location
4121 file="res/values-nl/strings.xml"
4122 line="22"
4123 column="5"/>
4124 <location
4125 file="res/values-nl/strings.xml"
4126 line="26"
4127 column="5"
4128 message="Duplicates value in `page_albums`"/>
4129 </issue>
4130
4131 <issue
4132 id="DuplicateStrings"
4133 message="Duplicate string value `Albumy`, used in `header_albums` and `page_albums`"
4134 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albumy&lt;/string>"
4135 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4136 <location
4137 file="res/values-pl/strings.xml"
4138 line="22"
4139 column="5"/>
4140 <location
4141 file="res/values-pl/strings.xml"
4142 line="26"
4143 column="5"
4144 message="Duplicates value in `page_albums`"/>
4145 </issue>
4146
4147 <issue
4148 id="DuplicateStrings"
4149 message="Duplicate string value `Albumy`, used in `header_albums` and `page_albums`"
4150 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albumy&lt;/string>"
4151 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4152 <location
4153 file="res/values-sk/strings.xml"
4154 line="22"
4155 column="5"/>
4156 <location
4157 file="res/values-sk/strings.xml"
4158 line="26"
4159 column="5"
4160 message="Duplicates value in `page_albums`"/>
4161 </issue>
4162
4163 <issue
4164 id="DuplicateStrings"
4165 message="Duplicate string value `Albümler`, used in `header_albums` and `page_albums`"
4166 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albümler&lt;/string>"
4167 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4168 <location
4169 file="res/values-tr/strings.xml"
4170 line="22"
4171 column="5"/>
4172 <location
4173 file="res/values-tr/strings.xml"
4174 line="26"
4175 column="5"
4176 message="Duplicates value in `page_albums`"/>
4177 </issue>
4178
4179 <issue
4180 id="DuplicateStrings"
4181 message="Duplicate string value `Casgliadau`, used in `header_albums` and `page_albums`"
4182 errorLine1=" &lt;string name=&quot;page_albums&quot;>Casgliadau&lt;/string>"
4183 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4184 <location
4185 file="res/values-cy/strings.xml"
4186 line="22"
4187 column="5"/>
4188 <location
4189 file="res/values-cy/strings.xml"
4190 line="26"
4191 column="5"
4192 message="Duplicates value in `page_albums`"/>
4193 </issue>
4194
4195 <issue
4196 id="DuplicateStrings"
4197 message="Duplicate string value `Àlbums`, used in `header_albums` and `page_albums`"
4198 errorLine1=" &lt;string name=&quot;page_albums&quot;>Àlbums&lt;/string>"
4199 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4200 <location
4201 file="res/values-ca/strings.xml"
4202 line="22"
4203 column="5"/>
4204 <location
4205 file="res/values-ca/strings.xml"
4206 line="26"
4207 column="5"
4208 message="Duplicates value in `page_albums`"/>
4209 </issue>
4210
4211 <issue
4212 id="DuplicateStrings"
4213 message="Duplicate string value `Álbumes`, used in `header_albums` and `page_albums`"
4214 errorLine1=" &lt;string name=&quot;page_albums&quot;>Álbumes&lt;/string>"
4215 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4216 <location
4217 file="res/values-ast-rES/strings.xml"
4218 line="22"
4219 column="5"/>
4220 <location
4221 file="res/values-ast-rES/strings.xml"
4222 line="26"
4223 column="5"
4224 message="Duplicates value in `page_albums`"/>
4225 </issue>
4226
4227 <issue
4228 id="DuplicateStrings"
4229 message="Duplicate string value `Álbumes`, used in `header_albums` and `page_albums`"
4230 errorLine1=" &lt;string name=&quot;page_albums&quot;>Álbumes&lt;/string>"
4231 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4232 <location
4233 file="res/values-es-rUS/strings.xml"
4234 line="22"
4235 column="5"/>
4236 <location
4237 file="res/values-es-rUS/strings.xml"
4238 line="26"
4239 column="5"
4240 message="Duplicates value in `page_albums`"/>
4241 </issue>
4242
4243 <issue
4244 id="DuplicateStrings"
4245 message="Duplicate string value `Álbumes`, used in `header_albums` and `page_albums`"
4246 errorLine1=" &lt;string name=&quot;page_albums&quot;>Álbumes&lt;/string>"
4247 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4248 <location
4249 file="res/values-es/strings.xml"
4250 line="22"
4251 column="5"/>
4252 <location
4253 file="res/values-es/strings.xml"
4254 line="26"
4255 column="5"
4256 message="Duplicates value in `page_albums`"/>
4257 </issue>
4258
4259 <issue
4260 id="DuplicateStrings"
4261 message="Duplicate string value `Álbums`, used in `header_albums` and `page_albums`"
4262 errorLine1=" &lt;string name=&quot;page_albums&quot;>Álbums&lt;/string>"
4263 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4264 <location
4265 file="res/values-gl/strings.xml"
4266 line="22"
4267 column="5"/>
4268 <location
4269 file="res/values-gl/strings.xml"
4270 line="26"
4271 column="5"
4272 message="Duplicates value in `page_albums`"/>
4273 </issue>
4274
4275 <issue
4276 id="DuplicateStrings"
4277 message="Duplicate string value `Álbuns`, used in `header_albums` and `page_albums`"
4278 errorLine1=" &lt;string name=&quot;page_albums&quot;>Álbuns&lt;/string>"
4279 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4280 <location
4281 file="res/values-pt-rBR/strings.xml"
4282 line="22"
4283 column="5"/>
4284 <location
4285 file="res/values-pt-rBR/strings.xml"
4286 line="26"
4287 column="5"
4288 message="Duplicates value in `page_albums`"/>
4289 </issue>
4290
4291 <issue
4292 id="DuplicateStrings"
4293 message="Duplicate string value `Álbuns`, used in `header_albums` and `page_albums`"
4294 errorLine1=" &lt;string name=&quot;page_albums&quot;>Álbuns&lt;/string>"
4295 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4296 <location
4297 file="res/values-pt-rPT/strings.xml"
4298 line="22"
4299 column="5"/>
4300 <location
4301 file="res/values-pt-rPT/strings.xml"
4302 line="26"
4303 column="5"
4304 message="Duplicates value in `page_albums`"/>
4305 </issue>
4306
4307 <issue
4308 id="DuplicateStrings"
4309 message="Duplicate string value `Άλμπουμ`, used in `header_albums`, `page_albums` and `sort_order_entry_album`"
4310 errorLine1=" &lt;string name=&quot;page_albums&quot;>Άλμπουμ&lt;/string>"
4311 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4312 <location
4313 file="res/values-el/strings.xml"
4314 line="22"
4315 column="5"/>
4316 <location
4317 file="res/values-el/strings.xml"
4318 line="26"
4319 column="5"
4320 message="Duplicates value in `page_albums`"/>
4321 <location
4322 file="res/values-el/strings.xml"
4323 line="48"
4324 column="5"
4325 message="Duplicates value in `page_albums`"/>
4326 </issue>
4327
4328 <issue
4329 id="DuplicateStrings"
4330 message="Duplicate string value `Албуми`, used in `header_albums` and `page_albums`"
4331 errorLine1=" &lt;string name=&quot;page_albums&quot;>Албуми&lt;/string>"
4332 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4333 <location
4334 file="res/values-bg/strings.xml"
4335 line="22"
4336 column="5"/>
4337 <location
4338 file="res/values-bg/strings.xml"
4339 line="26"
4340 column="5"
4341 message="Duplicates value in `page_albums`"/>
4342 </issue>
4343
4344 <issue
4345 id="DuplicateStrings"
4346 message="Duplicate string value `Албуми`, used in `header_albums` and `page_albums`"
4347 errorLine1=" &lt;string name=&quot;page_albums&quot;>Албуми&lt;/string>"
4348 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4349 <location
4350 file="res/values-sr/strings.xml"
4351 line="22"
4352 column="5"/>
4353 <location
4354 file="res/values-sr/strings.xml"
4355 line="26"
4356 column="5"
4357 message="Duplicates value in `page_albums`"/>
4358 </issue>
4359
4360 <issue
4361 id="DuplicateStrings"
4362 message="Duplicate string value `Альбоми`, used in `header_albums` and `page_albums`"
4363 errorLine1=" &lt;string name=&quot;page_albums&quot;>Альбоми&lt;/string>"
4364 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4365 <location
4366 file="res/values-uk/strings.xml"
4367 line="22"
4368 column="5"/>
4369 <location
4370 file="res/values-uk/strings.xml"
4371 line="26"
4372 column="5"
4373 message="Duplicates value in `page_albums`"/>
4374 </issue>
4375
4376 <issue
4377 id="DuplicateStrings"
4378 message="Duplicate string value `Альбомы`, used in `header_albums` and `page_albums`"
4379 errorLine1=" &lt;string name=&quot;page_albums&quot;>Альбомы&lt;/string>"
4380 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4381 <location
4382 file="res/values-be/strings.xml"
4383 line="22"
4384 column="5"/>
4385 <location
4386 file="res/values-be/strings.xml"
4387 line="26"
4388 column="5"
4389 message="Duplicates value in `page_albums`"/>
4390 </issue>
4391
4392 <issue
4393 id="DuplicateStrings"
4394 message="Duplicate string value `Альбомы`, used in `header_albums` and `page_albums`"
4395 errorLine1=" &lt;string name=&quot;page_albums&quot;>Альбомы&lt;/string>"
4396 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4397 <location
4398 file="res/values-ru/strings.xml"
4399 line="22"
4400 column="5"/>
4401 <location
4402 file="res/values-ru/strings.xml"
4403 line="26"
4404 column="5"
4405 message="Duplicates value in `page_albums`"/>
4406 </issue>
4407
4408 <issue
4409 id="DuplicateStrings"
4410 message="Duplicate string value `אלבומים`, used in `header_albums` and `page_albums`"
4411 errorLine1=" &lt;string name=&quot;page_albums&quot;>אלבומים&lt;/string>"
4412 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4413 <location
4414 file="res/values-iw/strings.xml"
4415 line="22"
4416 column="5"/>
4417 <location
4418 file="res/values-iw/strings.xml"
4419 line="26"
4420 column="5"
4421 message="Duplicates value in `page_albums`"/>
4422 </issue>
4423
4424 <issue
4425 id="DuplicateStrings"
4426 message="Duplicate string value `آلبوم‌ها`, used in `header_albums` and `page_albums`"
4427 errorLine1=" &lt;string name=&quot;page_albums&quot;>آلبوم‌ها&lt;/string>"
4428 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4429 <location
4430 file="res/values-fa/strings.xml"
4431 line="22"
4432 column="5"/>
4433 <location
4434 file="res/values-fa/strings.xml"
4435 line="26"
4436 column="5"
4437 message="Duplicates value in `page_albums`"/>
4438 </issue>
4439
4440 <issue
4441 id="DuplicateStrings"
4442 message="Duplicate string value `ألبومات`, used in `header_albums` and `page_albums`"
4443 errorLine1=" &lt;string name=&quot;page_albums&quot;>ألبومات&lt;/string>"
4444 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4445 <location
4446 file="res/values-ar/strings.xml"
4447 line="22"
4448 column="5"/>
4449 <location
4450 file="res/values-ar/strings.xml"
4451 line="26"
4452 column="5"
4453 message="Duplicates value in `page_albums`"/>
4454 </issue>
4455
4456 <issue
4457 id="DuplicateStrings"
4458 message="Duplicate string value `ئالبۇم`, used in `header_albums`, `page_albums` and `sort_order_entry_album`"
4459 errorLine1=" &lt;string name=&quot;page_albums&quot;>ئالبۇم&lt;/string>"
4460 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4461 <location
4462 file="res/values-ug/strings.xml"
4463 line="22"
4464 column="5"/>
4465 <location
4466 file="res/values-ug/strings.xml"
4467 line="26"
4468 column="5"
4469 message="Duplicates value in `page_albums`"/>
4470 <location
4471 file="res/values-ug/strings.xml"
4472 line="48"
4473 column="5"
4474 message="Duplicates value in `page_albums`"/>
4475 </issue>
4476
4477 <issue
4478 id="DuplicateStrings"
4479 message="Duplicate string value `ئەلبوم`, used in `header_albums` and `page_albums`"
4480 errorLine1=" &lt;string name=&quot;page_albums&quot;>ئەلبوم&lt;/string>"
4481 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4482 <location
4483 file="res/values-ku/strings.xml"
4484 line="22"
4485 column="5"/>
4486 <location
4487 file="res/values-ku/strings.xml"
4488 line="26"
4489 column="5"
4490 message="Duplicates value in `page_albums`"/>
4491 </issue>
4492
4493 <issue
4494 id="DuplicateStrings"
4495 message="Duplicate string value `अल्बम्स`, used in `header_albums` and `page_albums`"
4496 errorLine1=" &lt;string name=&quot;page_albums&quot;>अल्बम्स&lt;/string>"
4497 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4498 <location
4499 file="res/values-mr/strings.xml"
4500 line="22"
4501 column="5"/>
4502 <location
4503 file="res/values-mr/strings.xml"
4504 line="26"
4505 column="5"
4506 message="Duplicates value in `page_albums`"/>
4507 </issue>
4508
4509 <issue
4510 id="DuplicateStrings"
4511 message="Duplicate string value `एल्बम`, used in `header_albums`, `page_albums` and `sort_order_entry_album`"
4512 errorLine1=" &lt;string name=&quot;page_albums&quot;>एल्बम&lt;/string>"
4513 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4514 <location
4515 file="res/values-hi/strings.xml"
4516 line="22"
4517 column="5"/>
4518 <location
4519 file="res/values-hi/strings.xml"
4520 line="26"
4521 column="5"
4522 message="Duplicates value in `page_albums`"/>
4523 <location
4524 file="res/values-hi/strings.xml"
4525 line="48"
4526 column="5"
4527 message="Duplicates value in `page_albums`"/>
4528 </issue>
4529
4530 <issue
4531 id="DuplicateStrings"
4532 message="Duplicate string value `এলবামসমূহ`, used in `header_albums` and `page_albums`"
4533 errorLine1=" &lt;string name=&quot;page_albums&quot;>এলবামসমূহ&lt;/string>"
4534 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4535 <location
4536 file="res/values-as/strings.xml"
4537 line="22"
4538 column="5"/>
4539 <location
4540 file="res/values-as/strings.xml"
4541 line="26"
4542 column="5"
4543 message="Duplicates value in `page_albums`"/>
4544 </issue>
4545
4546 <issue
4547 id="DuplicateStrings"
4548 message="Duplicate string value `આલબ્મ્સ`, used in `header_albums` and `page_albums`"
4549 errorLine1=" &lt;string name=&quot;page_albums&quot;>આલબ્મ્સ&lt;/string>"
4550 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4551 <location
4552 file="res/values-gu/strings.xml"
4553 line="22"
4554 column="5"/>
4555 <location
4556 file="res/values-gu/strings.xml"
4557 line="26"
4558 column="5"
4559 message="Duplicates value in `page_albums`"/>
4560 </issue>
4561
4562 <issue
4563 id="DuplicateStrings"
4564 message="Duplicate string value `ଆଲବମଗୁଡିକ`, used in `header_albums` and `page_albums`"
4565 errorLine1=" &lt;string name=&quot;page_albums&quot;>ଆଲବମଗୁଡିକ&lt;/string>"
4566 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4567 <location
4568 file="res/values-or/strings.xml"
4569 line="22"
4570 column="5"/>
4571 <location
4572 file="res/values-or/strings.xml"
4573 line="26"
4574 column="5"
4575 message="Duplicates value in `page_albums`"/>
4576 </issue>
4577
4578 <issue
4579 id="DuplicateStrings"
4580 message="Duplicate string value `ஆல்பங்கள்`, used in `header_albums` and `page_albums`"
4581 errorLine1=" &lt;string name=&quot;page_albums&quot;>ஆல்பங்கள்&lt;/string>"
4582 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4583 <location
4584 file="res/values-ta/strings.xml"
4585 line="22"
4586 column="5"/>
4587 <location
4588 file="res/values-ta/strings.xml"
4589 line="26"
4590 column="5"
4591 message="Duplicates value in `page_albums`"/>
4592 </issue>
4593
4594 <issue
4595 id="DuplicateStrings"
4596 message="Duplicate string value `ఆల్బమ్‌లు`, used in `header_albums` and `page_albums`"
4597 errorLine1=" &lt;string name=&quot;page_albums&quot;>ఆల్బమ్‌లు&lt;/string>"
4598 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4599 <location
4600 file="res/values-te/strings.xml"
4601 line="22"
4602 column="5"/>
4603 <location
4604 file="res/values-te/strings.xml"
4605 line="26"
4606 column="5"
4607 message="Duplicates value in `page_albums`"/>
4608 </issue>
4609
4610 <issue
4611 id="DuplicateStrings"
4612 message="Duplicate string value `ആൽബങ്ങൾ`, used in `header_albums` and `page_albums`"
4613 errorLine1=" &lt;string name=&quot;page_albums&quot;>ആൽബങ്ങൾ&lt;/string>"
4614 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4615 <location
4616 file="res/values-ml/strings.xml"
4617 line="22"
4618 column="5"/>
4619 <location
4620 file="res/values-ml/strings.xml"
4621 line="26"
4622 column="5"
4623 message="Duplicates value in `page_albums`"/>
4624 </issue>
4625
4626 <issue
4627 id="DuplicateStrings"
4628 message="Duplicate string value `อัลบั้ม`, used in `header_albums`, `page_albums` and `sort_order_entry_album`"
4629 errorLine1=" &lt;string name=&quot;page_albums&quot;>อัลบั้ม&lt;/string>"
4630 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4631 <location
4632 file="res/values-th/strings.xml"
4633 line="22"
4634 column="5"/>
4635 <location
4636 file="res/values-th/strings.xml"
4637 line="26"
4638 column="5"
4639 message="Duplicates value in `page_albums`"/>
4640 <location
4641 file="res/values-th/strings.xml"
4642 line="48"
4643 column="5"
4644 message="Duplicates value in `page_albums`"/>
4645 </issue>
4646
4647 <issue
4648 id="DuplicateStrings"
4649 message="Duplicate string value `アルバム`, used in `header_albums`, `page_albums` and `sort_order_entry_album`"
4650 errorLine1=" &lt;string name=&quot;page_albums&quot;>アルバム&lt;/string>"
4651 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4652 <location
4653 file="res/values-ja/strings.xml"
4654 line="22"
4655 column="5"/>
4656 <location
4657 file="res/values-ja/strings.xml"
4658 line="26"
4659 column="5"
4660 message="Duplicates value in `page_albums`"/>
4661 <location
4662 file="res/values-ja/strings.xml"
4663 line="48"
4664 column="5"
4665 message="Duplicates value in `page_albums`"/>
4666 </issue>
4667
4668 <issue
4669 id="DuplicateStrings"
4670 message="Duplicate string value `专辑`, used in `header_albums`, `page_albums` and `sort_order_entry_album`"
4671 errorLine1=" &lt;string name=&quot;page_albums&quot;>专辑&lt;/string>"
4672 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4673 <location
4674 file="res/values-zh-rCN/strings.xml"
4675 line="22"
4676 column="5"/>
4677 <location
4678 file="res/values-zh-rCN/strings.xml"
4679 line="26"
4680 column="5"
4681 message="Duplicates value in `page_albums`"/>
4682 <location
4683 file="res/values-zh-rCN/strings.xml"
4684 line="48"
4685 column="5"
4686 message="Duplicates value in `page_albums`"/>
4687 </issue>
4688
4689 <issue
4690 id="DuplicateStrings"
4691 message="Duplicate string value `專輯`, used in `header_albums`, `page_albums` and `sort_order_entry_album`"
4692 errorLine1=" &lt;string name=&quot;page_albums&quot;>專輯&lt;/string>"
4693 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4694 <location
4695 file="res/values-zh-rTW/strings.xml"
4696 line="22"
4697 column="5"/>
4698 <location
4699 file="res/values-zh-rTW/strings.xml"
4700 line="26"
4701 column="5"
4702 message="Duplicates value in `page_albums`"/>
4703 <location
4704 file="res/values-zh-rTW/strings.xml"
4705 line="48"
4706 column="5"
4707 message="Duplicates value in `page_albums`"/>
4708 </issue>
4709
4710 <issue
4711 id="DuplicateStrings"
4712 message="Duplicate string value `앨범`, used in `header_albums`, `page_albums` and `sort_order_entry_album`"
4713 errorLine1=" &lt;string name=&quot;page_albums&quot;>앨범&lt;/string>"
4714 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4715 <location
4716 file="res/values-ko/strings.xml"
4717 line="22"
4718 column="5"/>
4719 <location
4720 file="res/values-ko/strings.xml"
4721 line="26"
4722 column="5"
4723 message="Duplicates value in `page_albums`"/>
4724 <location
4725 file="res/values-ko/strings.xml"
4726 line="48"
4727 column="5"
4728 message="Duplicates value in `page_albums`"/>
4729 </issue>
4730
4731 <issue
4732 id="DuplicateStrings"
4733 message="Duplicate string value `Albums`, used in `header_albums` and `page_albums`"
4734 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albums&lt;/string>"
4735 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4736 <location
4737 file="res/values/strings.xml"
4738 line="25"
4739 column="5"/>
4740 <location
4741 file="res/values/strings.xml"
4742 line="31"
4743 column="5"
4744 message="Duplicates value in `page_albums`"/>
4745 </issue>
4746
4747 <issue
4748 id="DuplicateStrings"
4749 message="Duplicate string value `隨機播放`, used in `accessibility_shuffle` and `menu_shuffle_item`"
4750 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>隨機播放&lt;/string>"
4751 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4752 <location
4753 file="res/values-zh-rHK/strings.xml"
4754 line="25"
4755 column="5"/>
4756 <location
4757 file="res/values-zh-rHK/strings.xml"
4758 line="80"
4759 column="5"
4760 message="Duplicates value in `menu_shuffle_item`"/>
4761 </issue>
4762
4763 <issue
4764 id="DuplicateStrings"
4765 message="Duplicate string value `Albumi`, used in `header_albums` and `sort_order_entry_album`"
4766 errorLine1=" &lt;string name=&quot;header_albums&quot;>Albumi&lt;/string>"
4767 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4768 <location
4769 file="res/values-fi/strings.xml"
4770 line="26"
4771 column="5"/>
4772 <location
4773 file="res/values-fi/strings.xml"
4774 line="48"
4775 column="5"
4776 message="Duplicates value in `header_albums`"/>
4777 </issue>
4778
4779 <issue
4780 id="DuplicateStrings"
4781 message="Duplicate string value `ಷಫಲ್`, used in `accessibility_shuffle` and `menu_shuffle_item`"
4782 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>ಷಫಲ್&lt;/string>"
4783 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4784 <location
4785 file="res/values-kn/strings.xml"
4786 line="28"
4787 column="5"/>
4788 <location
4789 file="res/values-kn/strings.xml"
4790 line="87"
4791 column="5"
4792 message="Duplicates value in `menu_shuffle_item`"/>
4793 </issue>
4794
4795 <issue
4796 id="DuplicateStrings"
4797 message="Duplicate string value `Acak`, used in `accessibility_shuffle` and `menu_shuffle_item`"
4798 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Acak&lt;/string>"
4799 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4800 <location
4801 file="res/values-in/strings.xml"
4802 line="29"
4803 column="5"/>
4804 <location
4805 file="res/values-in/strings.xml"
4806 line="88"
4807 column="5"
4808 message="Duplicates value in `menu_shuffle_item`"/>
4809 </issue>
4810
4811 <issue
4812 id="DuplicateStrings"
4813 message="Duplicate string value `Air thuaiream`, used in `accessibility_shuffle` and `menu_shuffle_item`"
4814 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Air thuaiream&lt;/string>"
4815 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4816 <location
4817 file="res/values-gd/strings.xml"
4818 line="29"
4819 column="5"/>
4820 <location
4821 file="res/values-gd/strings.xml"
4822 line="88"
4823 column="5"
4824 message="Duplicates value in `menu_shuffle_item`"/>
4825 </issue>
4826
4827 <issue
4828 id="DuplicateStrings"
4829 message="Duplicate string value `Al debalu`, used in `accessibility_shuffle` and `menu_shuffle_item`"
4830 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Al debalu&lt;/string>"
4831 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4832 <location
4833 file="res/values-ast-rES/strings.xml"
4834 line="29"
4835 column="5"/>
4836 <location
4837 file="res/values-ast-rES/strings.xml"
4838 line="88"
4839 column="5"
4840 message="Duplicates value in `menu_shuffle_item`"/>
4841 </issue>
4842
4843 <issue
4844 id="DuplicateStrings"
4845 message="Duplicate string value `Aleatório`, used in `accessibility_shuffle` and `menu_shuffle_item`"
4846 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Aleatório&lt;/string>"
4847 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4848 <location
4849 file="res/values-pt-rBR/strings.xml"
4850 line="29"
4851 column="5"/>
4852 <location
4853 file="res/values-pt-rBR/strings.xml"
4854 line="88"
4855 column="5"
4856 message="Duplicates value in `menu_shuffle_item`"/>
4857 </issue>
4858
4859 <issue
4860 id="DuplicateStrings"
4861 message="Duplicate string value `Ao chou`, used in `accessibility_shuffle` and `menu_shuffle_item`"
4862 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Ao chou&lt;/string>"
4863 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4864 <location
4865 file="res/values-gl/strings.xml"
4866 line="29"
4867 column="5"/>
4868 <location
4869 file="res/values-gl/strings.xml"
4870 line="88"
4871 column="5"
4872 message="Duplicates value in `menu_shuffle_item`"/>
4873 </issue>
4874
4875 <issue
4876 id="DuplicateStrings"
4877 message="Duplicate string value `Barreja`, used in `accessibility_shuffle` and `menu_shuffle_item`"
4878 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Barreja&lt;/string>"
4879 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4880 <location
4881 file="res/values-ca/strings.xml"
4882 line="29"
4883 column="5"/>
4884 <location
4885 file="res/values-ca/strings.xml"
4886 line="88"
4887 column="5"
4888 message="Duplicates value in `menu_shuffle_item`"/>
4889 </issue>
4890
4891 <issue
4892 id="DuplicateStrings"
4893 message="Duplicate string value `Bland`, used in `accessibility_shuffle` and `menu_shuffle_item`"
4894 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Bland&lt;/string>"
4895 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4896 <location
4897 file="res/values-da/strings.xml"
4898 line="29"
4899 column="5"/>
4900 <location
4901 file="res/values-da/strings.xml"
4902 line="88"
4903 column="5"
4904 message="Duplicates value in `menu_shuffle_item`"/>
4905 </issue>
4906
4907 <issue
4908 id="DuplicateStrings"
4909 message="Duplicate string value `Blanda`, used in `accessibility_shuffle` and `menu_shuffle_item`"
4910 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Blanda&lt;/string>"
4911 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4912 <location
4913 file="res/values-sv/strings.xml"
4914 line="29"
4915 column="5"/>
4916 <location
4917 file="res/values-sv/strings.xml"
4918 line="88"
4919 column="5"
4920 message="Duplicates value in `menu_shuffle_item`"/>
4921 </issue>
4922
4923 <issue
4924 id="DuplicateStrings"
4925 message="Duplicate string value `Cymysgu`, used in `accessibility_shuffle` and `menu_shuffle_item`"
4926 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Cymysgu&lt;/string>"
4927 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4928 <location
4929 file="res/values-cy/strings.xml"
4930 line="29"
4931 column="5"/>
4932 <location
4933 file="res/values-cy/strings.xml"
4934 line="88"
4935 column="5"
4936 message="Duplicates value in `menu_shuffle_item`"/>
4937 </issue>
4938
4939 <issue
4940 id="DuplicateStrings"
4941 message="Duplicate string value `Jaukt`, used in `accessibility_shuffle` and `menu_shuffle_item`"
4942 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Jaukt&lt;/string>"
4943 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4944 <location
4945 file="res/values-lv/strings.xml"
4946 line="29"
4947 column="5"/>
4948 <location
4949 file="res/values-lv/strings.xml"
4950 line="86"
4951 column="5"
4952 message="Duplicates value in `menu_shuffle_item`"/>
4953 </issue>
4954
4955 <issue
4956 id="DuplicateStrings"
4957 message="Duplicate string value `Juhuesitus`, used in `accessibility_shuffle` and `menu_shuffle_item`"
4958 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Juhuesitus&lt;/string>"
4959 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4960 <location
4961 file="res/values-et/strings.xml"
4962 line="29"
4963 column="5"/>
4964 <location
4965 file="res/values-et/strings.xml"
4966 line="88"
4967 column="5"
4968 message="Duplicates value in `menu_shuffle_item`"/>
4969 </issue>
4970
4971 <issue
4972 id="DuplicateStrings"
4973 message="Duplicate string value `Karıştır`, used in `accessibility_shuffle` and `menu_shuffle_item`"
4974 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Karıştır&lt;/string>"
4975 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4976 <location
4977 file="res/values-tr/strings.xml"
4978 line="29"
4979 column="5"/>
4980 <location
4981 file="res/values-tr/strings.xml"
4982 line="88"
4983 column="5"
4984 message="Duplicates value in `menu_shuffle_item`"/>
4985 </issue>
4986
4987 <issue
4988 id="DuplicateStrings"
4989 message="Duplicate string value `Lecture aléatoire`, used in `accessibility_shuffle` and `menu_shuffle_item`"
4990 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Lecture aléatoire&lt;/string>"
4991 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4992 <location
4993 file="res/values-fr/strings.xml"
4994 line="29"
4995 column="5"/>
4996 <location
4997 file="res/values-fr/strings.xml"
4998 line="88"
4999 column="5"
5000 message="Duplicates value in `menu_shuffle_item`"/>
5001 </issue>
5002
5003 <issue
5004 id="DuplicateStrings"
5005 message="Duplicate string value `Losowo`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5006 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Losowo&lt;/string>"
5007 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5008 <location
5009 file="res/values-pl/strings.xml"
5010 line="29"
5011 column="5"/>
5012 <location
5013 file="res/values-pl/strings.xml"
5014 line="88"
5015 column="5"
5016 message="Duplicates value in `menu_shuffle_item`"/>
5017 </issue>
5018
5019 <issue
5020 id="DuplicateStrings"
5021 message="Duplicate string value `Maišyti`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5022 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Maišyti&lt;/string>"
5023 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5024 <location
5025 file="res/values-lt/strings.xml"
5026 line="29"
5027 column="5"/>
5028 <location
5029 file="res/values-lt/strings.xml"
5030 line="88"
5031 column="5"
5032 message="Duplicates value in `menu_shuffle_item`"/>
5033 </issue>
5034
5035 <issue
5036 id="DuplicateStrings"
5037 message="Duplicate string value `Mezclar`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5038 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Mezclar&lt;/string>"
5039 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5040 <location
5041 file="res/values-es/strings.xml"
5042 line="29"
5043 column="5"/>
5044 <location
5045 file="res/values-es/strings.xml"
5046 line="88"
5047 column="5"
5048 message="Duplicates value in `menu_shuffle_item`"/>
5049 </issue>
5050
5051 <issue
5052 id="DuplicateStrings"
5053 message="Duplicate string value `Miješaj`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5054 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Miješaj&lt;/string>"
5055 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5056 <location
5057 file="res/values-hr/strings.xml"
5058 line="29"
5059 column="5"/>
5060 <location
5061 file="res/values-hr/strings.xml"
5062 line="88"
5063 column="5"
5064 message="Duplicates value in `menu_shuffle_item`"/>
5065 </issue>
5066
5067 <issue
5068 id="DuplicateStrings"
5069 message="Duplicate string value `Mjokselje`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5070 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Mjokselje&lt;/string>"
5071 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5072 <location
5073 file="res/values-fy-rNL/strings.xml"
5074 line="29"
5075 column="5"/>
5076 <location
5077 file="res/values-fy-rNL/strings.xml"
5078 line="88"
5079 column="5"
5080 message="Duplicates value in `menu_shuffle_item`"/>
5081 </issue>
5082
5083 <issue
5084 id="DuplicateStrings"
5085 message="Duplicate string value `Mëschen`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5086 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Mëschen&lt;/string>"
5087 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5088 <location
5089 file="res/values-lb/strings.xml"
5090 line="29"
5091 column="5"/>
5092 <location
5093 file="res/values-lb/strings.xml"
5094 line="88"
5095 column="5"
5096 message="Duplicates value in `menu_shuffle_item`"/>
5097 </issue>
5098
5099 <issue
5100 id="DuplicateStrings"
5101 message="Duplicate string value `Nahastu`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5102 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Nahastu&lt;/string>"
5103 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5104 <location
5105 file="res/values-eu/strings.xml"
5106 line="29"
5107 column="5"/>
5108 <location
5109 file="res/values-eu/strings.xml"
5110 line="88"
5111 column="5"
5112 message="Duplicates value in `menu_shuffle_item`"/>
5113 </issue>
5114
5115 <issue
5116 id="DuplicateStrings"
5117 message="Duplicate string value `Náhodně`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5118 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Náhodně&lt;/string>"
5119 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5120 <location
5121 file="res/values-cs/strings.xml"
5122 line="29"
5123 column="5"/>
5124 <location
5125 file="res/values-cs/strings.xml"
5126 line="88"
5127 column="5"
5128 message="Duplicates value in `menu_shuffle_item`"/>
5129 </issue>
5130
5131 <issue
5132 id="DuplicateStrings"
5133 message="Duplicate string value `Phát ngẫu nhiên`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5134 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Phát ngẫu nhiên&lt;/string>"
5135 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5136 <location
5137 file="res/values-vi/strings.xml"
5138 line="29"
5139 column="5"/>
5140 <location
5141 file="res/values-vi/strings.xml"
5142 line="88"
5143 column="5"
5144 message="Duplicates value in `menu_shuffle_item`"/>
5145 </issue>
5146
5147 <issue
5148 id="DuplicateStrings"
5149 message="Duplicate string value `Prehrať náhodne`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5150 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Prehrať náhodne&lt;/string>"
5151 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5152 <location
5153 file="res/values-sk/strings.xml"
5154 line="29"
5155 column="5"/>
5156 <location
5157 file="res/values-sk/strings.xml"
5158 line="88"
5159 column="5"
5160 message="Duplicates value in `menu_shuffle_item`"/>
5161 </issue>
5162
5163 <issue
5164 id="DuplicateStrings"
5165 message="Duplicate string value `Premešaj`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5166 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Premešaj&lt;/string>"
5167 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5168 <location
5169 file="res/values-sl/strings.xml"
5170 line="29"
5171 column="5"/>
5172 <location
5173 file="res/values-sl/strings.xml"
5174 line="88"
5175 column="5"
5176 message="Duplicates value in `menu_shuffle_item`"/>
5177 </issue>
5178
5179 <issue
5180 id="DuplicateStrings"
5181 message="Duplicate string value `Qarışdır`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5182 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Qarışdır&lt;/string>"
5183 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5184 <location
5185 file="res/values-az/strings.xml"
5186 line="29"
5187 column="5"/>
5188 <location
5189 file="res/values-az/strings.xml"
5190 line="88"
5191 column="5"
5192 message="Duplicates value in `menu_shuffle_item`"/>
5193 </issue>
5194
5195 <issue
5196 id="DuplicateStrings"
5197 message="Duplicate string value `Reproduzir aleatoriamente`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5198 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Reproduzir aleatoriamente&lt;/string>"
5199 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5200 <location
5201 file="res/values-pt-rPT/strings.xml"
5202 line="29"
5203 column="5"/>
5204 <location
5205 file="res/values-pt-rPT/strings.xml"
5206 line="88"
5207 column="5"
5208 message="Duplicates value in `menu_shuffle_item`"/>
5209 </issue>
5210
5211 <issue
5212 id="DuplicateStrings"
5213 message="Duplicate string value `Riproduzione casuale`, used in `accessibility_shuffle_all`, `accessibility_shuffle` and `menu_shuffle_item`"
5214 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Riproduzione casuale&lt;/string>"
5215 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5216 <location
5217 file="res/values-it/strings.xml"
5218 line="29"
5219 column="5"/>
5220 <location
5221 file="res/values-it/strings.xml"
5222 line="88"
5223 column="5"
5224 message="Duplicates value in `menu_shuffle_item`"/>
5225 <location
5226 file="res/values-it/strings.xml"
5227 line="89"
5228 column="5"
5229 message="Duplicates value in `menu_shuffle_item`"/>
5230 </issue>
5231
5232 <issue
5233 id="DuplicateStrings"
5234 message="Duplicate string value `Sekoita`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5235 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Sekoita&lt;/string>"
5236 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5237 <location
5238 file="res/values-fi/strings.xml"
5239 line="29"
5240 column="5"/>
5241 <location
5242 file="res/values-fi/strings.xml"
5243 line="88"
5244 column="5"
5245 message="Duplicates value in `menu_shuffle_item`"/>
5246 </issue>
5247
5248 <issue
5249 id="DuplicateStrings"
5250 message="Duplicate string value `Shuffle`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5251 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Shuffle&lt;/string>"
5252 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5253 <location
5254 file="res/values-en-rAU/strings.xml"
5255 line="29"
5256 column="5"/>
5257 <location
5258 file="res/values-en-rAU/strings.xml"
5259 line="88"
5260 column="5"
5261 message="Duplicates value in `menu_shuffle_item`"/>
5262 </issue>
5263
5264 <issue
5265 id="DuplicateStrings"
5266 message="Duplicate string value `Shuffle`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5267 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Shuffle&lt;/string>"
5268 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5269 <location
5270 file="res/values-en-rCA/strings.xml"
5271 line="29"
5272 column="5"/>
5273 <location
5274 file="res/values-en-rCA/strings.xml"
5275 line="88"
5276 column="5"
5277 message="Duplicates value in `menu_shuffle_item`"/>
5278 </issue>
5279
5280 <issue
5281 id="DuplicateStrings"
5282 message="Duplicate string value `Shuffle`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5283 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Shuffle&lt;/string>"
5284 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5285 <location
5286 file="res/values-en-rGB/strings.xml"
5287 line="29"
5288 column="5"/>
5289 <location
5290 file="res/values-en-rGB/strings.xml"
5291 line="88"
5292 column="5"
5293 message="Duplicates value in `menu_shuffle_item`"/>
5294 </issue>
5295
5296 <issue
5297 id="DuplicateStrings"
5298 message="Duplicate string value `Shuffle`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5299 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Shuffle&lt;/string>"
5300 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5301 <location
5302 file="res/values-en-rIN/strings.xml"
5303 line="29"
5304 column="5"/>
5305 <location
5306 file="res/values-en-rIN/strings.xml"
5307 line="88"
5308 column="5"
5309 message="Duplicates value in `menu_shuffle_item`"/>
5310 </issue>
5311
5312 <issue
5313 id="DuplicateStrings"
5314 message="Duplicate string value `Shuffle`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5315 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Shuffle&lt;/string>"
5316 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5317 <location
5318 file="res/values-nb/strings.xml"
5319 line="29"
5320 column="5"/>
5321 <location
5322 file="res/values-nb/strings.xml"
5323 line="88"
5324 column="5"
5325 message="Duplicates value in `menu_shuffle_item`"/>
5326 </issue>
5327
5328 <issue
5329 id="DuplicateStrings"
5330 message="Duplicate string value `Skommel`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5331 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Skommel&lt;/string>"
5332 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5333 <location
5334 file="res/values-af/strings.xml"
5335 line="29"
5336 column="5"/>
5337 <location
5338 file="res/values-af/strings.xml"
5339 line="88"
5340 column="5"
5341 message="Duplicates value in `menu_shuffle_item`"/>
5342 </issue>
5343
5344 <issue
5345 id="DuplicateStrings"
5346 message="Duplicate string value `Zufällige Wiedergabe`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5347 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Zufällige Wiedergabe&lt;/string>"
5348 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5349 <location
5350 file="res/values-de/strings.xml"
5351 line="29"
5352 column="5"/>
5353 <location
5354 file="res/values-de/strings.xml"
5355 line="88"
5356 column="5"
5357 message="Duplicates value in `menu_shuffle_item`"/>
5358 </issue>
5359
5360 <issue
5361 id="DuplicateStrings"
5362 message="Duplicate string value `Τυχαία αναπαραγωγή`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5363 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Τυχαία αναπαραγωγή&lt;/string>"
5364 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5365 <location
5366 file="res/values-el/strings.xml"
5367 line="29"
5368 column="5"/>
5369 <location
5370 file="res/values-el/strings.xml"
5371 line="88"
5372 column="5"
5373 message="Duplicates value in `menu_shuffle_item`"/>
5374 </issue>
5375
5376 <issue
5377 id="DuplicateStrings"
5378 message="Duplicate string value `Насумично`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5379 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Насумично&lt;/string>"
5380 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5381 <location
5382 file="res/values-sr/strings.xml"
5383 line="29"
5384 column="5"/>
5385 <location
5386 file="res/values-sr/strings.xml"
5387 line="88"
5388 column="5"
5389 message="Duplicates value in `menu_shuffle_item`"/>
5390 </issue>
5391
5392 <issue
5393 id="DuplicateStrings"
5394 message="Duplicate string value `Перамяшаць`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5395 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Перамяшаць&lt;/string>"
5396 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5397 <location
5398 file="res/values-be/strings.xml"
5399 line="29"
5400 column="5"/>
5401 <location
5402 file="res/values-be/strings.xml"
5403 line="88"
5404 column="5"
5405 message="Duplicates value in `menu_shuffle_item`"/>
5406 </issue>
5407
5408 <issue
5409 id="DuplicateStrings"
5410 message="Duplicate string value `Перемешать`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5411 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Перемешать&lt;/string>"
5412 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5413 <location
5414 file="res/values-ru/strings.xml"
5415 line="29"
5416 column="5"/>
5417 <location
5418 file="res/values-ru/strings.xml"
5419 line="88"
5420 column="5"
5421 message="Duplicates value in `menu_shuffle_item`"/>
5422 </issue>
5423
5424 <issue
5425 id="DuplicateStrings"
5426 message="Duplicate string value `Перемішати`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5427 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Перемішати&lt;/string>"
5428 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5429 <location
5430 file="res/values-uk/strings.xml"
5431 line="29"
5432 column="5"/>
5433 <location
5434 file="res/values-uk/strings.xml"
5435 line="88"
5436 column="5"
5437 message="Duplicates value in `menu_shuffle_item`"/>
5438 </issue>
5439
5440 <issue
5441 id="DuplicateStrings"
5442 message="Duplicate string value `Разбъркване`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5443 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Разбъркване&lt;/string>"
5444 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5445 <location
5446 file="res/values-bg/strings.xml"
5447 line="29"
5448 column="5"/>
5449 <location
5450 file="res/values-bg/strings.xml"
5451 line="88"
5452 column="5"
5453 message="Duplicates value in `menu_shuffle_item`"/>
5454 </issue>
5455
5456 <issue
5457 id="DuplicateStrings"
5458 message="Duplicate string value `ערבב`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5459 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>ערבב&lt;/string>"
5460 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5461 <location
5462 file="res/values-iw/strings.xml"
5463 line="29"
5464 column="5"/>
5465 <location
5466 file="res/values-iw/strings.xml"
5467 line="88"
5468 column="5"
5469 message="Duplicates value in `menu_shuffle_item`"/>
5470 </issue>
5471
5472 <issue
5473 id="DuplicateStrings"
5474 message="Duplicate string value `تصادفی`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5475 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>تصادفی&lt;/string>"
5476 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5477 <location
5478 file="res/values-fa/strings.xml"
5479 line="29"
5480 column="5"/>
5481 <location
5482 file="res/values-fa/strings.xml"
5483 line="88"
5484 column="5"
5485 message="Duplicates value in `menu_shuffle_item`"/>
5486 </issue>
5487
5488 <issue
5489 id="DuplicateStrings"
5490 message="Duplicate string value `تەرتىپسىز`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5491 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>تەرتىپسىز&lt;/string>"
5492 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5493 <location
5494 file="res/values-ug/strings.xml"
5495 line="29"
5496 column="5"/>
5497 <location
5498 file="res/values-ug/strings.xml"
5499 line="88"
5500 column="5"
5501 message="Duplicates value in `menu_shuffle_item`"/>
5502 </issue>
5503
5504 <issue
5505 id="DuplicateStrings"
5506 message="Duplicate string value `خلْط`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5507 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>خلْط&lt;/string>"
5508 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5509 <location
5510 file="res/values-ar/strings.xml"
5511 line="29"
5512 column="5"/>
5513 <location
5514 file="res/values-ar/strings.xml"
5515 line="88"
5516 column="5"
5517 message="Duplicates value in `menu_shuffle_item`"/>
5518 </issue>
5519
5520 <issue
5521 id="DuplicateStrings"
5522 message="Duplicate string value `शफल`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5523 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>शफल&lt;/string>"
5524 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5525 <location
5526 file="res/values-mr/strings.xml"
5527 line="29"
5528 column="5"/>
5529 <location
5530 file="res/values-mr/strings.xml"
5531 line="88"
5532 column="5"
5533 message="Duplicates value in `menu_shuffle_item`"/>
5534 </issue>
5535
5536 <issue
5537 id="DuplicateStrings"
5538 message="Duplicate string value `शफ़ल करें`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5539 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>शफ़ल करें&lt;/string>"
5540 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5541 <location
5542 file="res/values-hi/strings.xml"
5543 line="29"
5544 column="5"/>
5545 <location
5546 file="res/values-hi/strings.xml"
5547 line="88"
5548 column="5"
5549 message="Duplicates value in `menu_shuffle_item`"/>
5550 </issue>
5551
5552 <issue
5553 id="DuplicateStrings"
5554 message="Duplicate string value `সানমিহলি কৰক`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5555 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>সানমিহলি কৰক&lt;/string>"
5556 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5557 <location
5558 file="res/values-as/strings.xml"
5559 line="29"
5560 column="5"/>
5561 <location
5562 file="res/values-as/strings.xml"
5563 line="88"
5564 column="5"
5565 message="Duplicates value in `menu_shuffle_item`"/>
5566 </issue>
5567
5568 <issue
5569 id="DuplicateStrings"
5570 message="Duplicate string value `પીસો`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5571 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>પીસો&lt;/string>"
5572 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5573 <location
5574 file="res/values-gu/strings.xml"
5575 line="29"
5576 column="5"/>
5577 <location
5578 file="res/values-gu/strings.xml"
5579 line="88"
5580 column="5"
5581 message="Duplicates value in `menu_shuffle_item`"/>
5582 </issue>
5583
5584 <issue
5585 id="DuplicateStrings"
5586 message="Duplicate string value `ସଫଲ୍`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5587 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>ସଫଲ୍&lt;/string>"
5588 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5589 <location
5590 file="res/values-or/strings.xml"
5591 line="29"
5592 column="5"/>
5593 <location
5594 file="res/values-or/strings.xml"
5595 line="88"
5596 column="5"
5597 message="Duplicates value in `menu_shuffle_item`"/>
5598 </issue>
5599
5600 <issue
5601 id="DuplicateStrings"
5602 message="Duplicate string value `குலை`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5603 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>குலை&lt;/string>"
5604 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5605 <location
5606 file="res/values-ta/strings.xml"
5607 line="29"
5608 column="5"/>
5609 <location
5610 file="res/values-ta/strings.xml"
5611 line="88"
5612 column="5"
5613 message="Duplicates value in `menu_shuffle_item`"/>
5614 </issue>
5615
5616 <issue
5617 id="DuplicateStrings"
5618 message="Duplicate string value `మార్చు`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5619 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>మార్చు&lt;/string>"
5620 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5621 <location
5622 file="res/values-te/strings.xml"
5623 line="29"
5624 column="5"/>
5625 <location
5626 file="res/values-te/strings.xml"
5627 line="88"
5628 column="5"
5629 message="Duplicates value in `menu_shuffle_item`"/>
5630 </issue>
5631
5632 <issue
5633 id="DuplicateStrings"
5634 message="Duplicate string value `ഷഫിൾ ചെയ്യുക`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5635 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>ഷഫിൾ ചെയ്യുക&lt;/string>"
5636 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5637 <location
5638 file="res/values-ml/strings.xml"
5639 line="29"
5640 column="5"/>
5641 <location
5642 file="res/values-ml/strings.xml"
5643 line="88"
5644 column="5"
5645 message="Duplicates value in `menu_shuffle_item`"/>
5646 </issue>
5647
5648 <issue
5649 id="DuplicateStrings"
5650 message="Duplicate string value `สลับ`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5651 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>สลับ&lt;/string>"
5652 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5653 <location
5654 file="res/values-th/strings.xml"
5655 line="29"
5656 column="5"/>
5657 <location
5658 file="res/values-th/strings.xml"
5659 line="88"
5660 column="5"
5661 message="Duplicates value in `menu_shuffle_item`"/>
5662 </issue>
5663
5664 <issue
5665 id="DuplicateStrings"
5666 message="Duplicate string value `シャッフル`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5667 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>シャッフル&lt;/string>"
5668 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5669 <location
5670 file="res/values-ja/strings.xml"
5671 line="29"
5672 column="5"/>
5673 <location
5674 file="res/values-ja/strings.xml"
5675 line="88"
5676 column="5"
5677 message="Duplicates value in `menu_shuffle_item`"/>
5678 </issue>
5679
5680 <issue
5681 id="DuplicateStrings"
5682 message="Duplicate string value `隨機播放`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5683 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>隨機播放&lt;/string>"
5684 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5685 <location
5686 file="res/values-zh-rTW/strings.xml"
5687 line="29"
5688 column="5"/>
5689 <location
5690 file="res/values-zh-rTW/strings.xml"
5691 line="88"
5692 column="5"
5693 message="Duplicates value in `menu_shuffle_item`"/>
5694 </issue>
5695
5696 <issue
5697 id="DuplicateStrings"
5698 message="Duplicate string value `셔플`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5699 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>셔플&lt;/string>"
5700 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5701 <location
5702 file="res/values-ko/strings.xml"
5703 line="29"
5704 column="5"/>
5705 <location
5706 file="res/values-ko/strings.xml"
5707 line="88"
5708 column="5"
5709 message="Duplicates value in `menu_shuffle_item`"/>
5710 </issue>
5711
5712 <issue
5713 id="DuplicateStrings"
5714 message="Duplicate string value `Acak semua`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
5715 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Acak semua&lt;/string>"
5716 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5717 <location
5718 file="res/values-in/strings.xml"
5719 line="30"
5720 column="5"/>
5721 <location
5722 file="res/values-in/strings.xml"
5723 line="89"
5724 column="5"
5725 message="Duplicates value in `menu_shuffle_all`"/>
5726 </issue>
5727
5728 <issue
5729 id="DuplicateStrings"
5730 message="Duplicate string value `Alles mjokselje`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
5731 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Alles mjokselje&lt;/string>"
5732 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5733 <location
5734 file="res/values-fy-rNL/strings.xml"
5735 line="30"
5736 column="5"/>
5737 <location
5738 file="res/values-fy-rNL/strings.xml"
5739 line="89"
5740 column="5"
5741 message="Duplicates value in `menu_shuffle_all`"/>
5742 </issue>
5743
5744 <issue
5745 id="DuplicateStrings"
5746 message="Duplicate string value `Alles zufällig wiedergeben`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
5747 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Alles zufällig wiedergeben&lt;/string>"
5748 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5749 <location
5750 file="res/values-de/strings.xml"
5751 line="30"
5752 column="5"/>
5753 <location
5754 file="res/values-de/strings.xml"
5755 line="89"
5756 column="5"
5757 message="Duplicates value in `menu_shuffle_all`"/>
5758 </issue>
5759
5760 <issue
5761 id="DuplicateStrings"
5762 message="Duplicate string value `Amestecă toate`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
5763 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Amestecă toate&lt;/string>"
5764 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5765 <location
5766 file="res/values-ro/strings.xml"
5767 line="30"
5768 column="5"/>
5769 <location
5770 file="res/values-ro/strings.xml"
5771 line="89"
5772 column="5"
5773 message="Duplicates value in `menu_shuffle_all`"/>
5774 </issue>
5775
5776 <issue
5777 id="DuplicateStrings"
5778 message="Duplicate string value `Barreja-ho tot`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
5779 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Barreja-ho tot&lt;/string>"
5780 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5781 <location
5782 file="res/values-ca/strings.xml"
5783 line="30"
5784 column="5"/>
5785 <location
5786 file="res/values-ca/strings.xml"
5787 line="89"
5788 column="5"
5789 message="Duplicates value in `menu_shuffle_all`"/>
5790 </issue>
5791
5792 <issue
5793 id="DuplicateStrings"
5794 message="Duplicate string value `Bland alle`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
5795 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Bland alle&lt;/string>"
5796 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5797 <location
5798 file="res/values-da/strings.xml"
5799 line="30"
5800 column="5"/>
5801 <location
5802 file="res/values-da/strings.xml"
5803 line="89"
5804 column="5"
5805 message="Duplicates value in `menu_shuffle_all`"/>
5806 </issue>
5807
5808 <issue
5809 id="DuplicateStrings"
5810 message="Duplicate string value `Blanda alla`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
5811 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Blanda alla&lt;/string>"
5812 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5813 <location
5814 file="res/values-sv/strings.xml"
5815 line="30"
5816 column="5"/>
5817 <location
5818 file="res/values-sv/strings.xml"
5819 line="89"
5820 column="5"
5821 message="Duplicates value in `menu_shuffle_all`"/>
5822 </issue>
5823
5824 <issue
5825 id="DuplicateStrings"
5826 message="Duplicate string value `Cymysgu\&apos;r cwbl`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
5827 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Cymysgu\&apos;r cwbl&lt;/string>"
5828 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5829 <location
5830 file="res/values-cy/strings.xml"
5831 line="30"
5832 column="5"/>
5833 <location
5834 file="res/values-cy/strings.xml"
5835 line="89"
5836 column="5"
5837 message="Duplicates value in `menu_shuffle_all`"/>
5838 </issue>
5839
5840 <issue
5841 id="DuplicateStrings"
5842 message="Duplicate string value `Hamısını qarışdır`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
5843 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Hamısını qarışdır&lt;/string>"
5844 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5845 <location
5846 file="res/values-az/strings.xml"
5847 line="30"
5848 column="5"/>
5849 <location
5850 file="res/values-az/strings.xml"
5851 line="89"
5852 column="5"
5853 message="Duplicates value in `menu_shuffle_all`"/>
5854 </issue>
5855
5856 <issue
5857 id="DuplicateStrings"
5858 message="Duplicate string value `Jaukt visu`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
5859 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Jaukt visu&lt;/string>"
5860 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5861 <location
5862 file="res/values-lv/strings.xml"
5863 line="30"
5864 column="5"/>
5865 <location
5866 file="res/values-lv/strings.xml"
5867 line="87"
5868 column="5"
5869 message="Duplicates value in `menu_shuffle_all`"/>
5870 </issue>
5871
5872 <issue
5873 id="DuplicateStrings"
5874 message="Duplicate string value `Juhuesita kõik`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
5875 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Juhuesita kõik&lt;/string>"
5876 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5877 <location
5878 file="res/values-et/strings.xml"
5879 line="30"
5880 column="5"/>
5881 <location
5882 file="res/values-et/strings.xml"
5883 line="89"
5884 column="5"
5885 message="Duplicates value in `menu_shuffle_all`"/>
5886 </issue>
5887
5888 <issue
5889 id="DuplicateStrings"
5890 message="Duplicate string value `Lecture aléatoire de tous les titres`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
5891 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Lecture aléatoire de tous les titres&lt;/string>"
5892 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5893 <location
5894 file="res/values-fr/strings.xml"
5895 line="30"
5896 column="5"/>
5897 <location
5898 file="res/values-fr/strings.xml"
5899 line="89"
5900 column="5"
5901 message="Duplicates value in `menu_shuffle_all`"/>
5902 </issue>
5903
5904 <issue
5905 id="DuplicateStrings"
5906 message="Duplicate string value `Maišyti viską`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
5907 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Maišyti viską&lt;/string>"
5908 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5909 <location
5910 file="res/values-lt/strings.xml"
5911 line="30"
5912 column="5"/>
5913 <location
5914 file="res/values-lt/strings.xml"
5915 line="89"
5916 column="5"
5917 message="Duplicates value in `menu_shuffle_all`"/>
5918 </issue>
5919
5920 <issue
5921 id="DuplicateStrings"
5922 message="Duplicate string value `Mezclar todas`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
5923 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Mezclar todas&lt;/string>"
5924 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5925 <location
5926 file="res/values-es/strings.xml"
5927 line="30"
5928 column="5"/>
5929 <location
5930 file="res/values-es/strings.xml"
5931 line="89"
5932 column="5"
5933 message="Duplicates value in `menu_shuffle_all`"/>
5934 </issue>
5935
5936 <issue
5937 id="DuplicateStrings"
5938 message="Duplicate string value `Miješaj sve`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
5939 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Miješaj sve&lt;/string>"
5940 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5941 <location
5942 file="res/values-hr/strings.xml"
5943 line="30"
5944 column="5"/>
5945 <location
5946 file="res/values-hr/strings.xml"
5947 line="89"
5948 column="5"
5949 message="Duplicates value in `menu_shuffle_all`"/>
5950 </issue>
5951
5952 <issue
5953 id="DuplicateStrings"
5954 message="Duplicate string value `Na h-uile air thuaiream`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
5955 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Na h-uile air thuaiream&lt;/string>"
5956 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5957 <location
5958 file="res/values-gd/strings.xml"
5959 line="30"
5960 column="5"/>
5961 <location
5962 file="res/values-gd/strings.xml"
5963 line="89"
5964 column="5"
5965 message="Duplicates value in `menu_shuffle_all`"/>
5966 </issue>
5967
5968 <issue
5969 id="DuplicateStrings"
5970 message="Duplicate string value `Nahastu guztiak`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
5971 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Nahastu guztiak&lt;/string>"
5972 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5973 <location
5974 file="res/values-eu/strings.xml"
5975 line="30"
5976 column="5"/>
5977 <location
5978 file="res/values-eu/strings.xml"
5979 line="89"
5980 column="5"
5981 message="Duplicates value in `menu_shuffle_all`"/>
5982 </issue>
5983
5984 <issue
5985 id="DuplicateStrings"
5986 message="Duplicate string value `Phát ngẫu nhiên tất cả`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
5987 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Phát ngẫu nhiên tất cả&lt;/string>"
5988 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5989 <location
5990 file="res/values-vi/strings.xml"
5991 line="30"
5992 column="5"/>
5993 <location
5994 file="res/values-vi/strings.xml"
5995 line="89"
5996 column="5"
5997 message="Duplicates value in `menu_shuffle_all`"/>
5998 </issue>
5999
6000 <issue
6001 id="DuplicateStrings"
6002 message="Duplicate string value `Prehrať všetky náhodne`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6003 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Prehrať všetky náhodne&lt;/string>"
6004 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6005 <location
6006 file="res/values-sk/strings.xml"
6007 line="30"
6008 column="5"/>
6009 <location
6010 file="res/values-sk/strings.xml"
6011 line="89"
6012 column="5"
6013 message="Duplicates value in `menu_shuffle_all`"/>
6014 </issue>
6015
6016 <issue
6017 id="DuplicateStrings"
6018 message="Duplicate string value `Premešaj vse`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6019 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Premešaj vse&lt;/string>"
6020 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6021 <location
6022 file="res/values-sl/strings.xml"
6023 line="30"
6024 column="5"/>
6025 <location
6026 file="res/values-sl/strings.xml"
6027 line="89"
6028 column="5"
6029 message="Duplicates value in `menu_shuffle_all`"/>
6030 </issue>
6031
6032 <issue
6033 id="DuplicateStrings"
6034 message="Duplicate string value `Reproducción aleatoria`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6035 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Reproducción aleatoria&lt;/string>"
6036 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6037 <location
6038 file="res/values-es-rUS/strings.xml"
6039 line="30"
6040 column="5"/>
6041 <location
6042 file="res/values-es-rUS/strings.xml"
6043 line="89"
6044 column="5"
6045 message="Duplicates value in `menu_shuffle_all`"/>
6046 </issue>
6047
6048 <issue
6049 id="DuplicateStrings"
6050 message="Duplicate string value `Reproduzir todas aleatoriamente`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6051 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Reproduzir todas aleatoriamente&lt;/string>"
6052 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6053 <location
6054 file="res/values-pt-rPT/strings.xml"
6055 line="30"
6056 column="5"/>
6057 <location
6058 file="res/values-pt-rPT/strings.xml"
6059 line="89"
6060 column="5"
6061 message="Duplicates value in `menu_shuffle_all`"/>
6062 </issue>
6063
6064 <issue
6065 id="DuplicateStrings"
6066 message="Duplicate string value `Sekoita kaikki`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6067 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Sekoita kaikki&lt;/string>"
6068 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6069 <location
6070 file="res/values-fi/strings.xml"
6071 line="30"
6072 column="5"/>
6073 <location
6074 file="res/values-fi/strings.xml"
6075 line="89"
6076 column="5"
6077 message="Duplicates value in `menu_shuffle_all`"/>
6078 </issue>
6079
6080 <issue
6081 id="DuplicateStrings"
6082 message="Duplicate string value `Shuffle all`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6083 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Shuffle all&lt;/string>"
6084 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6085 <location
6086 file="res/values-en-rAU/strings.xml"
6087 line="30"
6088 column="5"/>
6089 <location
6090 file="res/values-en-rAU/strings.xml"
6091 line="89"
6092 column="5"
6093 message="Duplicates value in `menu_shuffle_all`"/>
6094 </issue>
6095
6096 <issue
6097 id="DuplicateStrings"
6098 message="Duplicate string value `Shuffle all`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6099 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Shuffle all&lt;/string>"
6100 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6101 <location
6102 file="res/values-en-rCA/strings.xml"
6103 line="30"
6104 column="5"/>
6105 <location
6106 file="res/values-en-rCA/strings.xml"
6107 line="89"
6108 column="5"
6109 message="Duplicates value in `menu_shuffle_all`"/>
6110 </issue>
6111
6112 <issue
6113 id="DuplicateStrings"
6114 message="Duplicate string value `Shuffle all`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6115 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Shuffle all&lt;/string>"
6116 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6117 <location
6118 file="res/values-en-rGB/strings.xml"
6119 line="30"
6120 column="5"/>
6121 <location
6122 file="res/values-en-rGB/strings.xml"
6123 line="89"
6124 column="5"
6125 message="Duplicates value in `menu_shuffle_all`"/>
6126 </issue>
6127
6128 <issue
6129 id="DuplicateStrings"
6130 message="Duplicate string value `Shuffle all`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6131 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Shuffle all&lt;/string>"
6132 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6133 <location
6134 file="res/values-en-rIN/strings.xml"
6135 line="30"
6136 column="5"/>
6137 <location
6138 file="res/values-en-rIN/strings.xml"
6139 line="89"
6140 column="5"
6141 message="Duplicates value in `menu_shuffle_all`"/>
6142 </issue>
6143
6144 <issue
6145 id="DuplicateStrings"
6146 message="Duplicate string value `Shuffle alle`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6147 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Shuffle alle&lt;/string>"
6148 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6149 <location
6150 file="res/values-nb/strings.xml"
6151 line="30"
6152 column="5"/>
6153 <location
6154 file="res/values-nb/strings.xml"
6155 line="89"
6156 column="5"
6157 message="Duplicates value in `menu_shuffle_all`"/>
6158 </issue>
6159
6160 <issue
6161 id="DuplicateStrings"
6162 message="Duplicate string value `Todas aleatório`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6163 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Todas aleatório&lt;/string>"
6164 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6165 <location
6166 file="res/values-pt-rBR/strings.xml"
6167 line="30"
6168 column="5"/>
6169 <location
6170 file="res/values-pt-rBR/strings.xml"
6171 line="89"
6172 column="5"
6173 message="Duplicates value in `menu_shuffle_all`"/>
6174 </issue>
6175
6176 <issue
6177 id="DuplicateStrings"
6178 message="Duplicate string value `Todo ao chou`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6179 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Todo ao chou&lt;/string>"
6180 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6181 <location
6182 file="res/values-gl/strings.xml"
6183 line="30"
6184 column="5"/>
6185 <location
6186 file="res/values-gl/strings.xml"
6187 line="89"
6188 column="5"
6189 message="Duplicates value in `menu_shuffle_all`"/>
6190 </issue>
6191
6192 <issue
6193 id="DuplicateStrings"
6194 message="Duplicate string value `Too al debalu`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6195 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Too al debalu&lt;/string>"
6196 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6197 <location
6198 file="res/values-ast-rES/strings.xml"
6199 line="30"
6200 column="5"/>
6201 <location
6202 file="res/values-ast-rES/strings.xml"
6203 line="89"
6204 column="5"
6205 message="Duplicates value in `menu_shuffle_all`"/>
6206 </issue>
6207
6208 <issue
6209 id="DuplicateStrings"
6210 message="Duplicate string value `Tümünü karıştır`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6211 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Tümünü karıştır&lt;/string>"
6212 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6213 <location
6214 file="res/values-tr/strings.xml"
6215 line="30"
6216 column="5"/>
6217 <location
6218 file="res/values-tr/strings.xml"
6219 line="89"
6220 column="5"
6221 message="Duplicates value in `menu_shuffle_all`"/>
6222 </issue>
6223
6224 <issue
6225 id="DuplicateStrings"
6226 message="Duplicate string value `Vše náhodně`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6227 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Vše náhodně&lt;/string>"
6228 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6229 <location
6230 file="res/values-cs/strings.xml"
6231 line="30"
6232 column="5"/>
6233 <location
6234 file="res/values-cs/strings.xml"
6235 line="89"
6236 column="5"
6237 message="Duplicates value in `menu_shuffle_all`"/>
6238 </issue>
6239
6240 <issue
6241 id="DuplicateStrings"
6242 message="Duplicate string value `Τυχαία αναπαραγωγή όλων`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6243 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Τυχαία αναπαραγωγή όλων&lt;/string>"
6244 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6245 <location
6246 file="res/values-el/strings.xml"
6247 line="30"
6248 column="5"/>
6249 <location
6250 file="res/values-el/strings.xml"
6251 line="89"
6252 column="5"
6253 message="Duplicates value in `menu_shuffle_all`"/>
6254 </issue>
6255
6256 <issue
6257 id="DuplicateStrings"
6258 message="Duplicate string value `Насумично све`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6259 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Насумично све&lt;/string>"
6260 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6261 <location
6262 file="res/values-sr/strings.xml"
6263 line="30"
6264 column="5"/>
6265 <location
6266 file="res/values-sr/strings.xml"
6267 line="89"
6268 column="5"
6269 message="Duplicates value in `menu_shuffle_all`"/>
6270 </issue>
6271
6272 <issue
6273 id="DuplicateStrings"
6274 message="Duplicate string value `Перамяшаць усё`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6275 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Перамяшаць усё&lt;/string>"
6276 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6277 <location
6278 file="res/values-be/strings.xml"
6279 line="30"
6280 column="5"/>
6281 <location
6282 file="res/values-be/strings.xml"
6283 line="89"
6284 column="5"
6285 message="Duplicates value in `menu_shuffle_all`"/>
6286 </issue>
6287
6288 <issue
6289 id="DuplicateStrings"
6290 message="Duplicate string value `Перемешать все`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6291 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Перемешать все&lt;/string>"
6292 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6293 <location
6294 file="res/values-ru/strings.xml"
6295 line="30"
6296 column="5"/>
6297 <location
6298 file="res/values-ru/strings.xml"
6299 line="89"
6300 column="5"
6301 message="Duplicates value in `menu_shuffle_all`"/>
6302 </issue>
6303
6304 <issue
6305 id="DuplicateStrings"
6306 message="Duplicate string value `Перемішати все`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6307 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Перемішати все&lt;/string>"
6308 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6309 <location
6310 file="res/values-uk/strings.xml"
6311 line="30"
6312 column="5"/>
6313 <location
6314 file="res/values-uk/strings.xml"
6315 line="89"
6316 column="5"
6317 message="Duplicates value in `menu_shuffle_all`"/>
6318 </issue>
6319
6320 <issue
6321 id="DuplicateStrings"
6322 message="Duplicate string value `Разбъркване на всички`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6323 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Разбъркване на всички&lt;/string>"
6324 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6325 <location
6326 file="res/values-bg/strings.xml"
6327 line="30"
6328 column="5"/>
6329 <location
6330 file="res/values-bg/strings.xml"
6331 line="89"
6332 column="5"
6333 message="Duplicates value in `menu_shuffle_all`"/>
6334 </issue>
6335
6336 <issue
6337 id="DuplicateStrings"
6338 message="Duplicate string value `ערבב הכל`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6339 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>ערבב הכל&lt;/string>"
6340 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6341 <location
6342 file="res/values-iw/strings.xml"
6343 line="30"
6344 column="5"/>
6345 <location
6346 file="res/values-iw/strings.xml"
6347 line="89"
6348 column="5"
6349 message="Duplicates value in `menu_shuffle_all`"/>
6350 </issue>
6351
6352 <issue
6353 id="DuplicateStrings"
6354 message="Duplicate string value `تصادفی همه`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6355 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>تصادفی همه&lt;/string>"
6356 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6357 <location
6358 file="res/values-fa/strings.xml"
6359 line="30"
6360 column="5"/>
6361 <location
6362 file="res/values-fa/strings.xml"
6363 line="89"
6364 column="5"
6365 message="Duplicates value in `menu_shuffle_all`"/>
6366 </issue>
6367
6368 <issue
6369 id="DuplicateStrings"
6370 message="Duplicate string value `خلْط الكل`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6371 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>خلْط الكل&lt;/string>"
6372 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6373 <location
6374 file="res/values-ar/strings.xml"
6375 line="30"
6376 column="5"/>
6377 <location
6378 file="res/values-ar/strings.xml"
6379 line="89"
6380 column="5"
6381 message="Duplicates value in `menu_shuffle_all`"/>
6382 </issue>
6383
6384 <issue
6385 id="DuplicateStrings"
6386 message="Duplicate string value `هه‌ڕه‌مه‌کی`, used in `accessibility_shuffle_all`, `accessibility_shuffle` and `menu_shuffle_all`"
6387 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>هه‌ڕه‌مه‌کی&lt;/string>"
6388 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6389 <location
6390 file="res/values-ku/strings.xml"
6391 line="30"
6392 column="5"/>
6393 <location
6394 file="res/values-ku/strings.xml"
6395 line="82"
6396 column="5"
6397 message="Duplicates value in `menu_shuffle_all`"/>
6398 <location
6399 file="res/values-ku/strings.xml"
6400 line="83"
6401 column="5"
6402 message="Duplicates value in `menu_shuffle_all`"/>
6403 </issue>
6404
6405 <issue
6406 id="DuplicateStrings"
6407 message="Duplicate string value `ھەممىنى تەرتىپسىز چال`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6408 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>ھەممىنى تەرتىپسىز چال&lt;/string>"
6409 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6410 <location
6411 file="res/values-ug/strings.xml"
6412 line="30"
6413 column="5"/>
6414 <location
6415 file="res/values-ug/strings.xml"
6416 line="89"
6417 column="5"
6418 message="Duplicates value in `menu_shuffle_all`"/>
6419 </issue>
6420
6421 <issue
6422 id="DuplicateStrings"
6423 message="Duplicate string value `सबको शफ़ल करें`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6424 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>सबको शफ़ल करें&lt;/string>"
6425 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6426 <location
6427 file="res/values-hi/strings.xml"
6428 line="30"
6429 column="5"/>
6430 <location
6431 file="res/values-hi/strings.xml"
6432 line="89"
6433 column="5"
6434 message="Duplicates value in `menu_shuffle_all`"/>
6435 </issue>
6436
6437 <issue
6438 id="DuplicateStrings"
6439 message="Duplicate string value `सर्व शफल करा`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6440 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>सर्व शफल करा&lt;/string>"
6441 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6442 <location
6443 file="res/values-mr/strings.xml"
6444 line="30"
6445 column="5"/>
6446 <location
6447 file="res/values-mr/strings.xml"
6448 line="89"
6449 column="5"
6450 message="Duplicates value in `menu_shuffle_all`"/>
6451 </issue>
6452
6453 <issue
6454 id="DuplicateStrings"
6455 message="Duplicate string value `আটাইবোৰ সানমিহলি কৰক`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6456 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>আটাইবোৰ সানমিহলি কৰক&lt;/string>"
6457 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6458 <location
6459 file="res/values-as/strings.xml"
6460 line="30"
6461 column="5"/>
6462 <location
6463 file="res/values-as/strings.xml"
6464 line="89"
6465 column="5"
6466 message="Duplicates value in `menu_shuffle_all`"/>
6467 </issue>
6468
6469 <issue
6470 id="DuplicateStrings"
6471 message="Duplicate string value `બધાને પીસો`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6472 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>બધાને પીસો&lt;/string>"
6473 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6474 <location
6475 file="res/values-gu/strings.xml"
6476 line="30"
6477 column="5"/>
6478 <location
6479 file="res/values-gu/strings.xml"
6480 line="89"
6481 column="5"
6482 message="Duplicates value in `menu_shuffle_all`"/>
6483 </issue>
6484
6485 <issue
6486 id="DuplicateStrings"
6487 message="Duplicate string value `ସମସ୍ତ ସଫଲ୍ କରନ୍ତୁ`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6488 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>ସମସ୍ତ ସଫଲ୍ କରନ୍ତୁ&lt;/string>"
6489 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6490 <location
6491 file="res/values-or/strings.xml"
6492 line="30"
6493 column="5"/>
6494 <location
6495 file="res/values-or/strings.xml"
6496 line="89"
6497 column="5"
6498 message="Duplicates value in `menu_shuffle_all`"/>
6499 </issue>
6500
6501 <issue
6502 id="DuplicateStrings"
6503 message="Duplicate string value `அனைத்தையும் குலை`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6504 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>அனைத்தையும் குலை&lt;/string>"
6505 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6506 <location
6507 file="res/values-ta/strings.xml"
6508 line="30"
6509 column="5"/>
6510 <location
6511 file="res/values-ta/strings.xml"
6512 line="89"
6513 column="5"
6514 message="Duplicates value in `menu_shuffle_all`"/>
6515 </issue>
6516
6517 <issue
6518 id="DuplicateStrings"
6519 message="Duplicate string value `అన్నీ షఫుల్ చేయి`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6520 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>అన్నీ షఫుల్ చేయి&lt;/string>"
6521 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6522 <location
6523 file="res/values-te/strings.xml"
6524 line="30"
6525 column="5"/>
6526 <location
6527 file="res/values-te/strings.xml"
6528 line="89"
6529 column="5"
6530 message="Duplicates value in `menu_shuffle_all`"/>
6531 </issue>
6532
6533 <issue
6534 id="DuplicateStrings"
6535 message="Duplicate string value `എല്ലാം ഷഫിൾ ചെയ്യുക`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6536 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>എല്ലാം ഷഫിൾ ചെയ്യുക&lt;/string>"
6537 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6538 <location
6539 file="res/values-ml/strings.xml"
6540 line="30"
6541 column="5"/>
6542 <location
6543 file="res/values-ml/strings.xml"
6544 line="89"
6545 column="5"
6546 message="Duplicates value in `menu_shuffle_all`"/>
6547 </issue>
6548
6549 <issue
6550 id="DuplicateStrings"
6551 message="Duplicate string value `สลับทั้งหมด`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6552 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>สลับทั้งหมด&lt;/string>"
6553 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6554 <location
6555 file="res/values-th/strings.xml"
6556 line="30"
6557 column="5"/>
6558 <location
6559 file="res/values-th/strings.xml"
6560 line="89"
6561 column="5"
6562 message="Duplicates value in `menu_shuffle_all`"/>
6563 </issue>
6564
6565 <issue
6566 id="DuplicateStrings"
6567 message="Duplicate string value `すべてシャッフル`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6568 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>すべてシャッフル&lt;/string>"
6569 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6570 <location
6571 file="res/values-ja/strings.xml"
6572 line="30"
6573 column="5"/>
6574 <location
6575 file="res/values-ja/strings.xml"
6576 line="89"
6577 column="5"
6578 message="Duplicates value in `menu_shuffle_all`"/>
6579 </issue>
6580
6581 <issue
6582 id="DuplicateStrings"
6583 message="Duplicate string value `모두 셔플`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6584 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>모두 셔플&lt;/string>"
6585 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6586 <location
6587 file="res/values-ko/strings.xml"
6588 line="30"
6589 column="5"/>
6590 <location
6591 file="res/values-ko/strings.xml"
6592 line="89"
6593 column="5"
6594 message="Duplicates value in `menu_shuffle_all`"/>
6595 </issue>
6596
6597 <issue
6598 id="DuplicateStrings"
6599 message="Duplicate string value `Shuffle`, used in `accessibility_shuffle` and `menu_shuffle_item`"
6600 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Shuffle&lt;/string>"
6601 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6602 <location
6603 file="res/values/strings.xml"
6604 line="36"
6605 column="5"/>
6606 <location
6607 file="res/values/strings.xml"
6608 line="108"
6609 column="5"
6610 message="Duplicates value in `menu_shuffle_item`"/>
6611 </issue>
6612
6613 <issue
6614 id="DuplicateStrings"
6615 message="Duplicate string value `Shuffle all`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6616 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Shuffle all&lt;/string>"
6617 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6618 <location
6619 file="res/values/strings.xml"
6620 line="37"
6621 column="5"/>
6622 <location
6623 file="res/values/strings.xml"
6624 line="109"
6625 column="5"
6626 message="Duplicates value in `menu_shuffle_all`"/>
6627 </issue>
6628
6629 <issue
6630 id="DuplicateStrings"
6631 message="Duplicate string value `儲存`, used in `save` and `settings_storage_category`"
6632 errorLine1=" &lt;string name=&quot;save&quot;>儲存&lt;/string>"
6633 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6634 <location
6635 file="res/values-zh-rTW/strings.xml"
6636 line="58"
6637 column="5"/>
6638 <location
6639 file="res/values-zh-rTW/strings.xml"
6640 line="94"
6641 column="5"
6642 message="Duplicates value in `save`"/>
6643 </issue>
6644
6645 <issue
6646 id="DuplicateStrings"
6647 message="Duplicate string value `Annulla`, used in `cancel` and `clear`"
6648 errorLine1=" &lt;string name=&quot;cancel&quot;>Annulla&lt;/string>"
6649 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6650 <location
6651 file="res/values-it/strings.xml"
6652 line="59"
6653 column="5"/>
6654 <location
6655 file="res/values-it/strings.xml"
6656 line="61"
6657 column="5"
6658 message="Duplicates value in `cancel`"/>
6659 </issue>
6660
6661 <issue
6662 id="DuplicateStrings"
6663 message="Duplicate string value `Borrar`, used in `clear` and `context_menu_delete`"
6664 errorLine1=" &lt;string name=&quot;clear&quot;>Borrar&lt;/string>"
6665 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6666 <location
6667 file="res/values-es-rUS/strings.xml"
6668 line="61"
6669 column="5"/>
6670 <location
6671 file="res/values-es-rUS/strings.xml"
6672 line="77"
6673 column="5"
6674 message="Duplicates value in `clear`"/>
6675 </issue>
6676
6677 <issue
6678 id="DuplicateStrings"
6679 message="Duplicate string value `Hapus`, used in `clear` and `context_menu_delete`"
6680 errorLine1=" &lt;string name=&quot;clear&quot;>Hapus&lt;/string>"
6681 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6682 <location
6683 file="res/values-in/strings.xml"
6684 line="61"
6685 column="5"/>
6686 <location
6687 file="res/values-in/strings.xml"
6688 line="77"
6689 column="5"
6690 message="Duplicates value in `clear`"/>
6691 </issue>
6692
6693 <issue
6694 id="DuplicateStrings"
6695 message="Duplicate string value `Löschen`, used in `clear` and `context_menu_delete`"
6696 errorLine1=" &lt;string name=&quot;clear&quot;>Löschen&lt;/string>"
6697 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6698 <location
6699 file="res/values-de/strings.xml"
6700 line="61"
6701 column="5"/>
6702 <location
6703 file="res/values-de/strings.xml"
6704 line="77"
6705 column="5"
6706 message="Duplicates value in `clear`"/>
6707 </issue>
6708
6709 <issue
6710 id="DuplicateStrings"
6711 message="Duplicate string value `Xoá`, used in `clear` and `context_menu_delete`"
6712 errorLine1=" &lt;string name=&quot;clear&quot;>Xoá&lt;/string>"
6713 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6714 <location
6715 file="res/values-vi/strings.xml"
6716 line="61"
6717 column="5"/>
6718 <location
6719 file="res/values-vi/strings.xml"
6720 line="77"
6721 column="5"
6722 message="Duplicates value in `clear`"/>
6723 </issue>
6724
6725 <issue
6726 id="DuplicateStrings"
6727 message="Duplicate string value `播放`, used in `accessibility_play` and `context_menu_play_selection`"
6728 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>播放&lt;/string>"
6729 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6730 <location
6731 file="res/values-zh-rHK/strings.xml"
6732 line="65"
6733 column="5"/>
6734 <location
6735 file="res/values-zh-rHK/strings.xml"
6736 line="76"
6737 column="5"
6738 message="Duplicates value in `context_menu_play_selection`"/>
6739 </issue>
6740
6741 <issue
6742 id="DuplicateStrings"
6743 message="Duplicate string value `لێدان`, used in `accessibility_play` and `context_menu_play_selection`"
6744 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>لێدان&lt;/string>"
6745 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6746 <location
6747 file="res/values-ku/strings.xml"
6748 line="68"
6749 column="5"/>
6750 <location
6751 file="res/values-ku/strings.xml"
6752 line="78"
6753 column="5"
6754 message="Duplicates value in `context_menu_play_selection`"/>
6755 </issue>
6756
6757 <issue
6758 id="DuplicateStrings"
6759 message="Duplicate string value `Atskaņot`, used in `accessibility_play` and `context_menu_play_selection`"
6760 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Atskaņot&lt;/string>"
6761 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6762 <location
6763 file="res/values-lv/strings.xml"
6764 line="71"
6765 column="5"/>
6766 <location
6767 file="res/values-lv/strings.xml"
6768 line="82"
6769 column="5"
6770 message="Duplicates value in `context_menu_play_selection`"/>
6771 </issue>
6772
6773 <issue
6774 id="DuplicateStrings"
6775 message="Duplicate string value `ಪ್ಲೇ`, used in `accessibility_play` and `context_menu_play_selection`"
6776 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>ಪ್ಲೇ&lt;/string>"
6777 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6778 <location
6779 file="res/values-kn/strings.xml"
6780 line="71"
6781 column="5"/>
6782 <location
6783 file="res/values-kn/strings.xml"
6784 line="83"
6785 column="5"
6786 message="Duplicates value in `context_menu_play_selection`"/>
6787 </issue>
6788
6789 <issue
6790 id="DuplicateStrings"
6791 message="Duplicate string value `Afspelen`, used in `accessibility_play` and `context_menu_play_selection`"
6792 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Afspelen&lt;/string>"
6793 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6794 <location
6795 file="res/values-nl/strings.xml"
6796 line="72"
6797 column="5"/>
6798 <location
6799 file="res/values-nl/strings.xml"
6800 line="84"
6801 column="5"
6802 message="Duplicates value in `context_menu_play_selection`"/>
6803 </issue>
6804
6805 <issue
6806 id="DuplicateStrings"
6807 message="Duplicate string value `Afspil`, used in `accessibility_play` and `context_menu_play_selection`"
6808 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Afspil&lt;/string>"
6809 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6810 <location
6811 file="res/values-da/strings.xml"
6812 line="72"
6813 column="5"/>
6814 <location
6815 file="res/values-da/strings.xml"
6816 line="84"
6817 column="5"
6818 message="Duplicates value in `context_menu_play_selection`"/>
6819 </issue>
6820
6821 <issue
6822 id="DuplicateStrings"
6823 message="Duplicate string value `Chwarae`, used in `accessibility_play` and `context_menu_play_selection`"
6824 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Chwarae&lt;/string>"
6825 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6826 <location
6827 file="res/values-cy/strings.xml"
6828 line="72"
6829 column="5"/>
6830 <location
6831 file="res/values-cy/strings.xml"
6832 line="84"
6833 column="5"
6834 message="Duplicates value in `context_menu_play_selection`"/>
6835 </issue>
6836
6837 <issue
6838 id="DuplicateStrings"
6839 message="Duplicate string value `Cluich`, used in `accessibility_play` and `context_menu_play_selection`"
6840 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Cluich&lt;/string>"
6841 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6842 <location
6843 file="res/values-gd/strings.xml"
6844 line="72"
6845 column="5"/>
6846 <location
6847 file="res/values-gd/strings.xml"
6848 line="84"
6849 column="5"
6850 message="Duplicates value in `context_menu_play_selection`"/>
6851 </issue>
6852
6853 <issue
6854 id="DuplicateStrings"
6855 message="Duplicate string value `Erreproduzitu`, used in `accessibility_play` and `context_menu_play_selection`"
6856 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Erreproduzitu&lt;/string>"
6857 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6858 <location
6859 file="res/values-eu/strings.xml"
6860 line="72"
6861 column="5"/>
6862 <location
6863 file="res/values-eu/strings.xml"
6864 line="84"
6865 column="5"
6866 message="Duplicates value in `context_menu_play_selection`"/>
6867 </issue>
6868
6869 <issue
6870 id="DuplicateStrings"
6871 message="Duplicate string value `Esita`, used in `accessibility_play` and `context_menu_play_selection`"
6872 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Esita&lt;/string>"
6873 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6874 <location
6875 file="res/values-et/strings.xml"
6876 line="72"
6877 column="5"/>
6878 <location
6879 file="res/values-et/strings.xml"
6880 line="84"
6881 column="5"
6882 message="Duplicates value in `context_menu_play_selection`"/>
6883 </issue>
6884
6885 <issue
6886 id="DuplicateStrings"
6887 message="Duplicate string value `Lejátszás`, used in `accessibility_play` and `context_menu_play_selection`"
6888 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Lejátszás&lt;/string>"
6889 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6890 <location
6891 file="res/values-hu/strings.xml"
6892 line="72"
6893 column="5"/>
6894 <location
6895 file="res/values-hu/strings.xml"
6896 line="84"
6897 column="5"
6898 message="Duplicates value in `context_menu_play_selection`"/>
6899 </issue>
6900
6901 <issue
6902 id="DuplicateStrings"
6903 message="Duplicate string value `Lire`, used in `accessibility_play` and `context_menu_play_selection`"
6904 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Lire&lt;/string>"
6905 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6906 <location
6907 file="res/values-fr/strings.xml"
6908 line="72"
6909 column="5"/>
6910 <location
6911 file="res/values-fr/strings.xml"
6912 line="84"
6913 column="5"
6914 message="Duplicates value in `context_menu_play_selection`"/>
6915 </issue>
6916
6917 <issue
6918 id="DuplicateStrings"
6919 message="Duplicate string value `Odtwórz`, used in `accessibility_play` and `context_menu_play_selection`"
6920 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Odtwórz&lt;/string>"
6921 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6922 <location
6923 file="res/values-pl/strings.xml"
6924 line="72"
6925 column="5"/>
6926 <location
6927 file="res/values-pl/strings.xml"
6928 line="84"
6929 column="5"
6930 message="Duplicates value in `context_menu_play_selection`"/>
6931 </issue>
6932
6933 <issue
6934 id="DuplicateStrings"
6935 message="Duplicate string value `Ofspillen`, used in `accessibility_play` and `context_menu_play_selection`"
6936 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Ofspillen&lt;/string>"
6937 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6938 <location
6939 file="res/values-lb/strings.xml"
6940 line="72"
6941 column="5"/>
6942 <location
6943 file="res/values-lb/strings.xml"
6944 line="84"
6945 column="5"
6946 message="Duplicates value in `context_menu_play_selection`"/>
6947 </issue>
6948
6949 <issue
6950 id="DuplicateStrings"
6951 message="Duplicate string value `Ofspylje`, used in `accessibility_play` and `context_menu_play_selection`"
6952 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Ofspylje&lt;/string>"
6953 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6954 <location
6955 file="res/values-fy-rNL/strings.xml"
6956 line="72"
6957 column="5"/>
6958 <location
6959 file="res/values-fy-rNL/strings.xml"
6960 line="84"
6961 column="5"
6962 message="Duplicates value in `context_menu_play_selection`"/>
6963 </issue>
6964
6965 <issue
6966 id="DuplicateStrings"
6967 message="Duplicate string value `Oynat`, used in `accessibility_play` and `context_menu_play_selection`"
6968 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Oynat&lt;/string>"
6969 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6970 <location
6971 file="res/values-az/strings.xml"
6972 line="72"
6973 column="5"/>
6974 <location
6975 file="res/values-az/strings.xml"
6976 line="84"
6977 column="5"
6978 message="Duplicates value in `context_menu_play_selection`"/>
6979 </issue>
6980
6981 <issue
6982 id="DuplicateStrings"
6983 message="Duplicate string value `Paleisti`, used in `accessibility_play` and `context_menu_play_selection`"
6984 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Paleisti&lt;/string>"
6985 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6986 <location
6987 file="res/values-lt/strings.xml"
6988 line="72"
6989 column="5"/>
6990 <location
6991 file="res/values-lt/strings.xml"
6992 line="84"
6993 column="5"
6994 message="Duplicates value in `context_menu_play_selection`"/>
6995 </issue>
6996
6997 <issue
6998 id="DuplicateStrings"
6999 message="Duplicate string value `Phát`, used in `accessibility_play` and `context_menu_play_selection`"
7000 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Phát&lt;/string>"
7001 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7002 <location
7003 file="res/values-vi/strings.xml"
7004 line="72"
7005 column="5"/>
7006 <location
7007 file="res/values-vi/strings.xml"
7008 line="84"
7009 column="5"
7010 message="Duplicates value in `context_menu_play_selection`"/>
7011 </issue>
7012
7013 <issue
7014 id="DuplicateStrings"
7015 message="Duplicate string value `Play`, used in `accessibility_play` and `context_menu_play_selection`"
7016 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Play&lt;/string>"
7017 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7018 <location
7019 file="res/values-en-rAU/strings.xml"
7020 line="72"
7021 column="5"/>
7022 <location
7023 file="res/values-en-rAU/strings.xml"
7024 line="84"
7025 column="5"
7026 message="Duplicates value in `context_menu_play_selection`"/>
7027 </issue>
7028
7029 <issue
7030 id="DuplicateStrings"
7031 message="Duplicate string value `Play`, used in `accessibility_play` and `context_menu_play_selection`"
7032 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Play&lt;/string>"
7033 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7034 <location
7035 file="res/values-en-rCA/strings.xml"
7036 line="72"
7037 column="5"/>
7038 <location
7039 file="res/values-en-rCA/strings.xml"
7040 line="84"
7041 column="5"
7042 message="Duplicates value in `context_menu_play_selection`"/>
7043 </issue>
7044
7045 <issue
7046 id="DuplicateStrings"
7047 message="Duplicate string value `Play`, used in `accessibility_play` and `context_menu_play_selection`"
7048 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Play&lt;/string>"
7049 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7050 <location
7051 file="res/values-en-rGB/strings.xml"
7052 line="72"
7053 column="5"/>
7054 <location
7055 file="res/values-en-rGB/strings.xml"
7056 line="84"
7057 column="5"
7058 message="Duplicates value in `context_menu_play_selection`"/>
7059 </issue>
7060
7061 <issue
7062 id="DuplicateStrings"
7063 message="Duplicate string value `Play`, used in `accessibility_play` and `context_menu_play_selection`"
7064 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Play&lt;/string>"
7065 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7066 <location
7067 file="res/values-en-rIN/strings.xml"
7068 line="72"
7069 column="5"/>
7070 <location
7071 file="res/values-en-rIN/strings.xml"
7072 line="84"
7073 column="5"
7074 message="Duplicates value in `context_menu_play_selection`"/>
7075 </issue>
7076
7077 <issue
7078 id="DuplicateStrings"
7079 message="Duplicate string value `Predvajaj`, used in `accessibility_play` and `context_menu_play_selection`"
7080 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Predvajaj&lt;/string>"
7081 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7082 <location
7083 file="res/values-sl/strings.xml"
7084 line="72"
7085 column="5"/>
7086 <location
7087 file="res/values-sl/strings.xml"
7088 line="84"
7089 column="5"
7090 message="Duplicates value in `context_menu_play_selection`"/>
7091 </issue>
7092
7093 <issue
7094 id="DuplicateStrings"
7095 message="Duplicate string value `Prehrať`, used in `accessibility_play` and `context_menu_play_selection`"
7096 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Prehrať&lt;/string>"
7097 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7098 <location
7099 file="res/values-sk/strings.xml"
7100 line="72"
7101 column="5"/>
7102 <location
7103 file="res/values-sk/strings.xml"
7104 line="84"
7105 column="5"
7106 message="Duplicates value in `context_menu_play_selection`"/>
7107 </issue>
7108
7109 <issue
7110 id="DuplicateStrings"
7111 message="Duplicate string value `Putar`, used in `accessibility_play` and `context_menu_play_selection`"
7112 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Putar&lt;/string>"
7113 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7114 <location
7115 file="res/values-in/strings.xml"
7116 line="72"
7117 column="5"/>
7118 <location
7119 file="res/values-in/strings.xml"
7120 line="84"
7121 column="5"
7122 message="Duplicates value in `context_menu_play_selection`"/>
7123 </issue>
7124
7125 <issue
7126 id="DuplicateStrings"
7127 message="Duplicate string value `Přehrát`, used in `accessibility_play` and `context_menu_play_selection`"
7128 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Přehrát&lt;/string>"
7129 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7130 <location
7131 file="res/values-cs/strings.xml"
7132 line="72"
7133 column="5"/>
7134 <location
7135 file="res/values-cs/strings.xml"
7136 line="84"
7137 column="5"
7138 message="Duplicates value in `context_menu_play_selection`"/>
7139 </issue>
7140
7141 <issue
7142 id="DuplicateStrings"
7143 message="Duplicate string value `Redare`, used in `accessibility_play` and `context_menu_play_selection`"
7144 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Redare&lt;/string>"
7145 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7146 <location
7147 file="res/values-ro/strings.xml"
7148 line="72"
7149 column="5"/>
7150 <location
7151 file="res/values-ro/strings.xml"
7152 line="84"
7153 column="5"
7154 message="Duplicates value in `context_menu_play_selection`"/>
7155 </issue>
7156
7157 <issue
7158 id="DuplicateStrings"
7159 message="Duplicate string value `Reproducir`, used in `accessibility_play` and `context_menu_play_selection`"
7160 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Reproducir&lt;/string>"
7161 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7162 <location
7163 file="res/values-ast-rES/strings.xml"
7164 line="72"
7165 column="5"/>
7166 <location
7167 file="res/values-ast-rES/strings.xml"
7168 line="84"
7169 column="5"
7170 message="Duplicates value in `context_menu_play_selection`"/>
7171 </issue>
7172
7173 <issue
7174 id="DuplicateStrings"
7175 message="Duplicate string value `Reproducir`, used in `accessibility_play` and `context_menu_play_selection`"
7176 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Reproducir&lt;/string>"
7177 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7178 <location
7179 file="res/values-es-rUS/strings.xml"
7180 line="72"
7181 column="5"/>
7182 <location
7183 file="res/values-es-rUS/strings.xml"
7184 line="84"
7185 column="5"
7186 message="Duplicates value in `context_menu_play_selection`"/>
7187 </issue>
7188
7189 <issue
7190 id="DuplicateStrings"
7191 message="Duplicate string value `Reproducir`, used in `accessibility_play` and `context_menu_play_selection`"
7192 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Reproducir&lt;/string>"
7193 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7194 <location
7195 file="res/values-es/strings.xml"
7196 line="72"
7197 column="5"/>
7198 <location
7199 file="res/values-es/strings.xml"
7200 line="84"
7201 column="5"
7202 message="Duplicates value in `context_menu_play_selection`"/>
7203 </issue>
7204
7205 <issue
7206 id="DuplicateStrings"
7207 message="Duplicate string value `Reproducir`, used in `accessibility_play` and `context_menu_play_selection`"
7208 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Reproducir&lt;/string>"
7209 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7210 <location
7211 file="res/values-gl/strings.xml"
7212 line="72"
7213 column="5"/>
7214 <location
7215 file="res/values-gl/strings.xml"
7216 line="84"
7217 column="5"
7218 message="Duplicates value in `context_menu_play_selection`"/>
7219 </issue>
7220
7221 <issue
7222 id="DuplicateStrings"
7223 message="Duplicate string value `Reprodueix`, used in `accessibility_play` and `context_menu_play_selection`"
7224 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Reprodueix&lt;/string>"
7225 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7226 <location
7227 file="res/values-ca/strings.xml"
7228 line="72"
7229 column="5"/>
7230 <location
7231 file="res/values-ca/strings.xml"
7232 line="84"
7233 column="5"
7234 message="Duplicates value in `context_menu_play_selection`"/>
7235 </issue>
7236
7237 <issue
7238 id="DuplicateStrings"
7239 message="Duplicate string value `Reproduzir`, used in `accessibility_play` and `context_menu_play_selection`"
7240 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Reproduzir&lt;/string>"
7241 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7242 <location
7243 file="res/values-pt-rPT/strings.xml"
7244 line="72"
7245 column="5"/>
7246 <location
7247 file="res/values-pt-rPT/strings.xml"
7248 line="84"
7249 column="5"
7250 message="Duplicates value in `context_menu_play_selection`"/>
7251 </issue>
7252
7253 <issue
7254 id="DuplicateStrings"
7255 message="Duplicate string value `Riproduci`, used in `accessibility_play` and `context_menu_play_selection`"
7256 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Riproduci&lt;/string>"
7257 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7258 <location
7259 file="res/values-it/strings.xml"
7260 line="72"
7261 column="5"/>
7262 <location
7263 file="res/values-it/strings.xml"
7264 line="84"
7265 column="5"
7266 message="Duplicates value in `context_menu_play_selection`"/>
7267 </issue>
7268
7269 <issue
7270 id="DuplicateStrings"
7271 message="Duplicate string value `Speel`, used in `accessibility_play` and `context_menu_play_selection`"
7272 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Speel&lt;/string>"
7273 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7274 <location
7275 file="res/values-af/strings.xml"
7276 line="72"
7277 column="5"/>
7278 <location
7279 file="res/values-af/strings.xml"
7280 line="84"
7281 column="5"
7282 message="Duplicates value in `context_menu_play_selection`"/>
7283 </issue>
7284
7285 <issue
7286 id="DuplicateStrings"
7287 message="Duplicate string value `Spela`, used in `accessibility_play` and `context_menu_play_selection`"
7288 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Spela&lt;/string>"
7289 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7290 <location
7291 file="res/values-sv/strings.xml"
7292 line="72"
7293 column="5"/>
7294 <location
7295 file="res/values-sv/strings.xml"
7296 line="84"
7297 column="5"
7298 message="Duplicates value in `context_menu_play_selection`"/>
7299 </issue>
7300
7301 <issue
7302 id="DuplicateStrings"
7303 message="Duplicate string value `Spill av`, used in `accessibility_play` and `context_menu_play_selection`"
7304 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Spill av&lt;/string>"
7305 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7306 <location
7307 file="res/values-nb/strings.xml"
7308 line="72"
7309 column="5"/>
7310 <location
7311 file="res/values-nb/strings.xml"
7312 line="84"
7313 column="5"
7314 message="Duplicates value in `context_menu_play_selection`"/>
7315 </issue>
7316
7317 <issue
7318 id="DuplicateStrings"
7319 message="Duplicate string value `Sviraj`, used in `accessibility_play` and `context_menu_play_selection`"
7320 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Sviraj&lt;/string>"
7321 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7322 <location
7323 file="res/values-hr/strings.xml"
7324 line="72"
7325 column="5"/>
7326 <location
7327 file="res/values-hr/strings.xml"
7328 line="84"
7329 column="5"
7330 message="Duplicates value in `context_menu_play_selection`"/>
7331 </issue>
7332
7333 <issue
7334 id="DuplicateStrings"
7335 message="Duplicate string value `Tocar`, used in `accessibility_play` and `context_menu_play_selection`"
7336 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Tocar&lt;/string>"
7337 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7338 <location
7339 file="res/values-pt-rBR/strings.xml"
7340 line="72"
7341 column="5"/>
7342 <location
7343 file="res/values-pt-rBR/strings.xml"
7344 line="84"
7345 column="5"
7346 message="Duplicates value in `context_menu_play_selection`"/>
7347 </issue>
7348
7349 <issue
7350 id="DuplicateStrings"
7351 message="Duplicate string value `Toista`, used in `accessibility_play` and `context_menu_play_selection`"
7352 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Toista&lt;/string>"
7353 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7354 <location
7355 file="res/values-fi/strings.xml"
7356 line="72"
7357 column="5"/>
7358 <location
7359 file="res/values-fi/strings.xml"
7360 line="84"
7361 column="5"
7362 message="Duplicates value in `context_menu_play_selection`"/>
7363 </issue>
7364
7365 <issue
7366 id="DuplicateStrings"
7367 message="Duplicate string value `Wiedergeben`, used in `accessibility_play` and `context_menu_play_selection`"
7368 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Wiedergeben&lt;/string>"
7369 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7370 <location
7371 file="res/values-de/strings.xml"
7372 line="72"
7373 column="5"/>
7374 <location
7375 file="res/values-de/strings.xml"
7376 line="84"
7377 column="5"
7378 message="Duplicates value in `context_menu_play_selection`"/>
7379 </issue>
7380
7381 <issue
7382 id="DuplicateStrings"
7383 message="Duplicate string value `Çal`, used in `accessibility_play` and `context_menu_play_selection`"
7384 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Çal&lt;/string>"
7385 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7386 <location
7387 file="res/values-tr/strings.xml"
7388 line="72"
7389 column="5"/>
7390 <location
7391 file="res/values-tr/strings.xml"
7392 line="84"
7393 column="5"
7394 message="Duplicates value in `context_menu_play_selection`"/>
7395 </issue>
7396
7397 <issue
7398 id="DuplicateStrings"
7399 message="Duplicate string value `Αναπαραγωγή`, used in `accessibility_play` and `context_menu_play_selection`"
7400 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Αναπαραγωγή&lt;/string>"
7401 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7402 <location
7403 file="res/values-el/strings.xml"
7404 line="72"
7405 column="5"/>
7406 <location
7407 file="res/values-el/strings.xml"
7408 line="84"
7409 column="5"
7410 message="Duplicates value in `context_menu_play_selection`"/>
7411 </issue>
7412
7413 <issue
7414 id="DuplicateStrings"
7415 message="Duplicate string value `Воспроизвести`, used in `accessibility_play` and `context_menu_play_selection`"
7416 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Воспроизвести&lt;/string>"
7417 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7418 <location
7419 file="res/values-ru/strings.xml"
7420 line="72"
7421 column="5"/>
7422 <location
7423 file="res/values-ru/strings.xml"
7424 line="84"
7425 column="5"
7426 message="Duplicates value in `context_menu_play_selection`"/>
7427 </issue>
7428
7429 <issue
7430 id="DuplicateStrings"
7431 message="Duplicate string value `Грати`, used in `accessibility_play` and `context_menu_play_selection`"
7432 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Грати&lt;/string>"
7433 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7434 <location
7435 file="res/values-uk/strings.xml"
7436 line="72"
7437 column="5"/>
7438 <location
7439 file="res/values-uk/strings.xml"
7440 line="84"
7441 column="5"
7442 message="Duplicates value in `context_menu_play_selection`"/>
7443 </issue>
7444
7445 <issue
7446 id="DuplicateStrings"
7447 message="Duplicate string value `Изпълни`, used in `accessibility_play` and `context_menu_play_selection`"
7448 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Изпълни&lt;/string>"
7449 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7450 <location
7451 file="res/values-bg/strings.xml"
7452 line="72"
7453 column="5"/>
7454 <location
7455 file="res/values-bg/strings.xml"
7456 line="84"
7457 column="5"
7458 message="Duplicates value in `context_menu_play_selection`"/>
7459 </issue>
7460
7461 <issue
7462 id="DuplicateStrings"
7463 message="Duplicate string value `Прайграць`, used in `accessibility_play`, `context_menu_play_album` and `context_menu_play_selection`"
7464 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Прайграць&lt;/string>"
7465 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7466 <location
7467 file="res/values-be/strings.xml"
7468 line="72"
7469 column="5"/>
7470 <location
7471 file="res/values-be/strings.xml"
7472 line="74"
7473 column="5"
7474 message="Duplicates value in `context_menu_play_selection`"/>
7475 <location
7476 file="res/values-be/strings.xml"
7477 line="84"
7478 column="5"
7479 message="Duplicates value in `context_menu_play_selection`"/>
7480 </issue>
7481
7482 <issue
7483 id="DuplicateStrings"
7484 message="Duplicate string value `Пусти`, used in `accessibility_play` and `context_menu_play_selection`"
7485 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Пусти&lt;/string>"
7486 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7487 <location
7488 file="res/values-sr/strings.xml"
7489 line="72"
7490 column="5"/>
7491 <location
7492 file="res/values-sr/strings.xml"
7493 line="84"
7494 column="5"
7495 message="Duplicates value in `context_menu_play_selection`"/>
7496 </issue>
7497
7498 <issue
7499 id="DuplicateStrings"
7500 message="Duplicate string value `נגן`, used in `accessibility_play` and `context_menu_play_selection`"
7501 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>נגן&lt;/string>"
7502 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7503 <location
7504 file="res/values-iw/strings.xml"
7505 line="72"
7506 column="5"/>
7507 <location
7508 file="res/values-iw/strings.xml"
7509 line="84"
7510 column="5"
7511 message="Duplicates value in `context_menu_play_selection`"/>
7512 </issue>
7513
7514 <issue
7515 id="DuplicateStrings"
7516 message="Duplicate string value `تشغيل`, used in `accessibility_play` and `context_menu_play_selection`"
7517 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>تشغيل&lt;/string>"
7518 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7519 <location
7520 file="res/values-ar/strings.xml"
7521 line="72"
7522 column="5"/>
7523 <location
7524 file="res/values-ar/strings.xml"
7525 line="84"
7526 column="5"
7527 message="Duplicates value in `context_menu_play_selection`"/>
7528 </issue>
7529
7530 <issue
7531 id="DuplicateStrings"
7532 message="Duplicate string value `قويۇش`, used in `accessibility_play` and `context_menu_play_selection`"
7533 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>قويۇش&lt;/string>"
7534 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7535 <location
7536 file="res/values-ug/strings.xml"
7537 line="72"
7538 column="5"/>
7539 <location
7540 file="res/values-ug/strings.xml"
7541 line="84"
7542 column="5"
7543 message="Duplicates value in `context_menu_play_selection`"/>
7544 </issue>
7545
7546 <issue
7547 id="DuplicateStrings"
7548 message="Duplicate string value `پخش`, used in `accessibility_play` and `context_menu_play_selection`"
7549 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>پخش&lt;/string>"
7550 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7551 <location
7552 file="res/values-fa/strings.xml"
7553 line="72"
7554 column="5"/>
7555 <location
7556 file="res/values-fa/strings.xml"
7557 line="84"
7558 column="5"
7559 message="Duplicates value in `context_menu_play_selection`"/>
7560 </issue>
7561
7562 <issue
7563 id="DuplicateStrings"
7564 message="Duplicate string value `प्ले करा`, used in `accessibility_play` and `context_menu_play_selection`"
7565 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>प्ले करा&lt;/string>"
7566 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7567 <location
7568 file="res/values-mr/strings.xml"
7569 line="72"
7570 column="5"/>
7571 <location
7572 file="res/values-mr/strings.xml"
7573 line="84"
7574 column="5"
7575 message="Duplicates value in `context_menu_play_selection`"/>
7576 </issue>
7577
7578 <issue
7579 id="DuplicateStrings"
7580 message="Duplicate string value `बजाएँ`, used in `accessibility_play` and `context_menu_play_selection`"
7581 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>बजाएँ&lt;/string>"
7582 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7583 <location
7584 file="res/values-hi/strings.xml"
7585 line="72"
7586 column="5"/>
7587 <location
7588 file="res/values-hi/strings.xml"
7589 line="84"
7590 column="5"
7591 message="Duplicates value in `context_menu_play_selection`"/>
7592 </issue>
7593
7594 <issue
7595 id="DuplicateStrings"
7596 message="Duplicate string value `চলাওঁক`, used in `accessibility_play` and `context_menu_play_selection`"
7597 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>চলাওঁক&lt;/string>"
7598 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7599 <location
7600 file="res/values-as/strings.xml"
7601 line="72"
7602 column="5"/>
7603 <location
7604 file="res/values-as/strings.xml"
7605 line="84"
7606 column="5"
7607 message="Duplicates value in `context_menu_play_selection`"/>
7608 </issue>
7609
7610 <issue
7611 id="DuplicateStrings"
7612 message="Duplicate string value `ચલાવો`, used in `accessibility_play` and `context_menu_play_selection`"
7613 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>ચલાવો&lt;/string>"
7614 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7615 <location
7616 file="res/values-gu/strings.xml"
7617 line="72"
7618 column="5"/>
7619 <location
7620 file="res/values-gu/strings.xml"
7621 line="84"
7622 column="5"
7623 message="Duplicates value in `context_menu_play_selection`"/>
7624 </issue>
7625
7626 <issue
7627 id="DuplicateStrings"
7628 message="Duplicate string value `ଚଳାଅ`, used in `accessibility_play` and `context_menu_play_selection`"
7629 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>ଚଳାଅ&lt;/string>"
7630 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7631 <location
7632 file="res/values-or/strings.xml"
7633 line="72"
7634 column="5"/>
7635 <location
7636 file="res/values-or/strings.xml"
7637 line="84"
7638 column="5"
7639 message="Duplicates value in `context_menu_play_selection`"/>
7640 </issue>
7641
7642 <issue
7643 id="DuplicateStrings"
7644 message="Duplicate string value `இயக்கு`, used in `accessibility_play` and `context_menu_play_selection`"
7645 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>இயக்கு&lt;/string>"
7646 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7647 <location
7648 file="res/values-ta/strings.xml"
7649 line="72"
7650 column="5"/>
7651 <location
7652 file="res/values-ta/strings.xml"
7653 line="84"
7654 column="5"
7655 message="Duplicates value in `context_menu_play_selection`"/>
7656 </issue>
7657
7658 <issue
7659 id="DuplicateStrings"
7660 message="Duplicate string value `ప్లే చేయి`, used in `accessibility_play` and `context_menu_play_selection`"
7661 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>ప్లే చేయి&lt;/string>"
7662 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7663 <location
7664 file="res/values-te/strings.xml"
7665 line="72"
7666 column="5"/>
7667 <location
7668 file="res/values-te/strings.xml"
7669 line="84"
7670 column="5"
7671 message="Duplicates value in `context_menu_play_selection`"/>
7672 </issue>
7673
7674 <issue
7675 id="DuplicateStrings"
7676 message="Duplicate string value `പ്ലേ ചെയ്യുക`, used in `accessibility_play` and `context_menu_play_selection`"
7677 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>പ്ലേ ചെയ്യുക&lt;/string>"
7678 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7679 <location
7680 file="res/values-ml/strings.xml"
7681 line="72"
7682 column="5"/>
7683 <location
7684 file="res/values-ml/strings.xml"
7685 line="84"
7686 column="5"
7687 message="Duplicates value in `context_menu_play_selection`"/>
7688 </issue>
7689
7690 <issue
7691 id="DuplicateStrings"
7692 message="Duplicate string value `เล่น`, used in `accessibility_play` and `context_menu_play_selection`"
7693 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>เล่น&lt;/string>"
7694 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7695 <location
7696 file="res/values-th/strings.xml"
7697 line="72"
7698 column="5"/>
7699 <location
7700 file="res/values-th/strings.xml"
7701 line="84"
7702 column="5"
7703 message="Duplicates value in `context_menu_play_selection`"/>
7704 </issue>
7705
7706 <issue
7707 id="DuplicateStrings"
7708 message="Duplicate string value `再生`, used in `accessibility_play` and `context_menu_play_selection`"
7709 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>再生&lt;/string>"
7710 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7711 <location
7712 file="res/values-ja/strings.xml"
7713 line="72"
7714 column="5"/>
7715 <location
7716 file="res/values-ja/strings.xml"
7717 line="84"
7718 column="5"
7719 message="Duplicates value in `context_menu_play_selection`"/>
7720 </issue>
7721
7722 <issue
7723 id="DuplicateStrings"
7724 message="Duplicate string value `播放`, used in `accessibility_play` and `context_menu_play_selection`"
7725 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>播放&lt;/string>"
7726 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7727 <location
7728 file="res/values-zh-rCN/strings.xml"
7729 line="72"
7730 column="5"/>
7731 <location
7732 file="res/values-zh-rCN/strings.xml"
7733 line="84"
7734 column="5"
7735 message="Duplicates value in `context_menu_play_selection`"/>
7736 </issue>
7737
7738 <issue
7739 id="DuplicateStrings"
7740 message="Duplicate string value `播放`, used in `accessibility_play` and `context_menu_play_selection`"
7741 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>播放&lt;/string>"
7742 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7743 <location
7744 file="res/values-zh-rTW/strings.xml"
7745 line="72"
7746 column="5"/>
7747 <location
7748 file="res/values-zh-rTW/strings.xml"
7749 line="84"
7750 column="5"
7751 message="Duplicates value in `context_menu_play_selection`"/>
7752 </issue>
7753
7754 <issue
7755 id="DuplicateStrings"
7756 message="Duplicate string value `재생`, used in `accessibility_play` and `context_menu_play_selection`"
7757 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>재생&lt;/string>"
7758 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7759 <location
7760 file="res/values-ko/strings.xml"
7761 line="72"
7762 column="5"/>
7763 <location
7764 file="res/values-ko/strings.xml"
7765 line="84"
7766 column="5"
7767 message="Duplicates value in `context_menu_play_selection`"/>
7768 </issue>
7769
7770 <issue
7771 id="DuplicateStrings"
7772 message="Duplicate string value `Siguiente`, used in `accessibility_next` and `context_menu_play_next`"
7773 errorLine1=" &lt;string name=&quot;context_menu_play_next&quot;>Siguiente&lt;/string>"
7774 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7775 <location
7776 file="res/values-ast-rES/strings.xml"
7777 line="73"
7778 column="5"/>
7779 <location
7780 file="res/values-ast-rES/strings.xml"
7781 line="86"
7782 column="5"
7783 message="Duplicates value in `context_menu_play_next`"/>
7784 </issue>
7785
7786 <issue
7787 id="DuplicateStrings"
7788 message="Duplicate string value `Siguiente`, used in `accessibility_next` and `context_menu_play_next`"
7789 errorLine1=" &lt;string name=&quot;context_menu_play_next&quot;>Siguiente&lt;/string>"
7790 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7791 <location
7792 file="res/values-es-rUS/strings.xml"
7793 line="73"
7794 column="5"/>
7795 <location
7796 file="res/values-es-rUS/strings.xml"
7797 line="86"
7798 column="5"
7799 message="Duplicates value in `context_menu_play_next`"/>
7800 </issue>
7801
7802 <issue
7803 id="DuplicateStrings"
7804 message="Duplicate string value `Siguiente`, used in `accessibility_next` and `context_menu_play_next`"
7805 errorLine1=" &lt;string name=&quot;context_menu_play_next&quot;>Siguiente&lt;/string>"
7806 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7807 <location
7808 file="res/values-es/strings.xml"
7809 line="73"
7810 column="5"/>
7811 <location
7812 file="res/values-es/strings.xml"
7813 line="86"
7814 column="5"
7815 message="Duplicates value in `context_menu_play_next`"/>
7816 </issue>
7817
7818 <issue
7819 id="DuplicateStrings"
7820 message="Duplicate string value `Play`, used in `accessibility_play` and `context_menu_play_selection`"
7821 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Play&lt;/string>"
7822 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7823 <location
7824 file="res/values/strings.xml"
7825 line="90"
7826 column="5"/>
7827 <location
7828 file="res/values/strings.xml"
7829 line="104"
7830 column="5"
7831 message="Duplicates value in `context_menu_play_selection`"/>
7832 </issue>
7833
7834 <issue
7835 id="DuplicateStrings"
7836 message="Duplicate string value `音乐:4 \u00d7 1`, used in `app_widget_large` and `app_widget_small`"
7837 errorLine1=" &lt;string name=&quot;app_widget_small&quot;>音乐:4 \u00d7 1&lt;/string>"
7838 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7839 <location
7840 file="res/values-zh-rCN/strings.xml"
7841 line="104"
7842 column="5"/>
7843 <location
7844 file="res/values-zh-rCN/strings.xml"
7845 line="105"
7846 column="5"
7847 message="Duplicates value in `app_widget_small`"/>
7848 </issue>
7849
7850 <issue
7851 id="DuplicateStrings"
7852 message="Duplicate string value `Ez dago abestirik erreprodukzio-zerrendan`, used in `empty_playlist_main` and `empty_queue_main`"
7853 errorLine1=" &lt;string name=&quot;empty_playlist_main&quot;>Ez dago abestirik erreprodukzio-zerrendan&lt;/string>"
7854 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7855 <location
7856 file="res/values-eu/strings.xml"
7857 line="109"
7858 column="5"/>
7859 <location
7860 file="res/values-eu/strings.xml"
7861 line="117"
7862 column="5"
7863 message="Duplicates value in `empty_playlist_main`"/>
7864 </issue>
7865
7866 <issue
7867 id="TypographyDashes"
7868 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
7869 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 sekundoj&lt;/string>"
7870 errorLine2=" ~~~~~~~~~~~~~~~~">
7871 <location
7872 file="res/values-eo/strings.xml"
7873 line="31"
7874 column="44"/>
7875 </issue>
7876
7877 <issue
7878 id="TypographyDashes"
7879 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
7880 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 minutoj&lt;/string>"
7881 errorLine2=" ~~~~~~~~~~~~~">
7882 <location
7883 file="res/values-eo/strings.xml"
7884 line="32"
7885 column="42"/>
7886 </issue>
7887
7888 <issue
7889 id="TypographyDashes"
7890 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
7891 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 segundos&lt;/string>"
7892 errorLine2=" ~~~~~~~~~~~~~~~~">
7893 <location
7894 file="res/values-sc-rIT/strings.xml"
7895 line="32"
7896 column="44"/>
7897 </issue>
7898
7899 <issue
7900 id="TypographyDashes"
7901 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
7902 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 minutoj&lt;/string>"
7903 errorLine2=" ~~~~~~~~~~~~~">
7904 <location
7905 file="res/values-eo/strings.xml"
7906 line="33"
7907 column="42"/>
7908 </issue>
7909
7910 <issue
7911 id="TypographyDashes"
7912 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
7913 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 minutos&lt;/string>"
7914 errorLine2=" ~~~~~~~~~~~~~">
7915 <location
7916 file="res/values-sc-rIT/strings.xml"
7917 line="33"
7918 column="42"/>
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_3_to_4_minutes&quot;>3 - 4 minutoj&lt;/string>"
7925 errorLine2=" ~~~~~~~~~~~~~">
7926 <location
7927 file="res/values-eo/strings.xml"
7928 line="34"
7929 column="42"/>
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_2_to_3_minutes&quot;>2 - 3 minutos&lt;/string>"
7936 errorLine2=" ~~~~~~~~~~~~~">
7937 <location
7938 file="res/values-sc-rIT/strings.xml"
7939 line="34"
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_4_to_5_minutes&quot;>4 - 5 minutoj&lt;/string>"
7947 errorLine2=" ~~~~~~~~~~~~~">
7948 <location
7949 file="res/values-eo/strings.xml"
7950 line="35"
7951 column="42"/>
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_3_to_4_minutes&quot;>3 - 4 minutos&lt;/string>"
7958 errorLine2=" ~~~~~~~~~~~~~">
7959 <location
7960 file="res/values-sc-rIT/strings.xml"
7961 line="35"
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_5_to_10_minutes&quot;>5 - 10 minutoj&lt;/string>"
7969 errorLine2=" ~~~~~~~~~~~~~~">
7970 <location
7971 file="res/values-eo/strings.xml"
7972 line="36"
7973 column="43"/>
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_4_to_5_minutes&quot;>4 - 5 minutos&lt;/string>"
7980 errorLine2=" ~~~~~~~~~~~~~">
7981 <location
7982 file="res/values-sc-rIT/strings.xml"
7983 line="36"
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_10_to_30_minutes&quot;>10 - 30 minutoj&lt;/string>"
7991 errorLine2=" ~~~~~~~~~~~~~~~">
7992 <location
7993 file="res/values-eo/strings.xml"
7994 line="37"
7995 column="44"/>
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_5_to_10_minutes&quot;>5 - 10 minutos&lt;/string>"
8002 errorLine2=" ~~~~~~~~~~~~~~">
8003 <location
8004 file="res/values-sc-rIT/strings.xml"
8005 line="37"
8006 column="43"/>
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_30_to_60_minutes&quot;>30 - 60 minutoj&lt;/string>"
8013 errorLine2=" ~~~~~~~~~~~~~~~">
8014 <location
8015 file="res/values-eo/strings.xml"
8016 line="38"
8017 column="44"/>
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_10_to_30_minutes&quot;>10 - 30 minutos&lt;/string>"
8024 errorLine2=" ~~~~~~~~~~~~~~~">
8025 <location
8026 file="res/values-sc-rIT/strings.xml"
8027 line="38"
8028 column="44"/>
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_30_to_60_minutes&quot;>30 - 60 minutos&lt;/string>"
8035 errorLine2=" ~~~~~~~~~~~~~~~">
8036 <location
8037 file="res/values-sc-rIT/strings.xml"
8038 line="39"
8039 column="44"/>
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_2_to_4_songs&quot;>2 - 4 kantoj&lt;/string>"
8046 errorLine2=" ~~~~~~~~~~~~">
8047 <location
8048 file="res/values-eo/strings.xml"
8049 line="40"
8050 column="40"/>
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_9_songs&quot;>5 - 9 kantoj&lt;/string>"
8057 errorLine2=" ~~~~~~~~~~~~">
8058 <location
8059 file="res/values-eo/strings.xml"
8060 line="41"
8061 column="40"/>
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_seconds&quot;>30 - 60 sekonda&lt;/string>"
8068 errorLine2=" ~~~~~~~~~~~~~~~">
8069 <location
8070 file="res/values-sq/strings.xml"
8071 line="68"
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_1_to_2_minutes&quot;>1 - 2 minuta&lt;/string>"
8079 errorLine2=" ~~~~~~~~~~~~">
8080 <location
8081 file="res/values-sq/strings.xml"
8082 line="69"
8083 column="42"/>
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_2_to_3_minutes&quot;>2 - 3 minuta&lt;/string>"
8090 errorLine2=" ~~~~~~~~~~~~">
8091 <location
8092 file="res/values-sq/strings.xml"
8093 line="70"
8094 column="42"/>
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_3_to_4_minutes&quot;>3 - 4 minuta&lt;/string>"
8101 errorLine2=" ~~~~~~~~~~~~">
8102 <location
8103 file="res/values-sq/strings.xml"
8104 line="71"
8105 column="42"/>
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_4_to_5_minutes&quot;>4 - 5 minuta&lt;/string>"
8112 errorLine2=" ~~~~~~~~~~~~">
8113 <location
8114 file="res/values-sq/strings.xml"
8115 line="72"
8116 column="42"/>
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_5_to_10_minutes&quot;>5 - 10 minuta&lt;/string>"
8123 errorLine2=" ~~~~~~~~~~~~~">
8124 <location
8125 file="res/values-sq/strings.xml"
8126 line="73"
8127 column="43"/>
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_10_to_30_minutes&quot;>10 - 30 minuta&lt;/string>"
8134 errorLine2=" ~~~~~~~~~~~~~~">
8135 <location
8136 file="res/values-sq/strings.xml"
8137 line="74"
8138 column="44"/>
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_30_to_60_minutes&quot;>30 - 60 minuta&lt;/string>"
8145 errorLine2=" ~~~~~~~~~~~~~~">
8146 <location
8147 file="res/values-sq/strings.xml"
8148 line="75"
8149 column="44"/>
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_2_to_4_songs&quot;>2 - 4 këngë&lt;/string>"
8156 errorLine2=" ~~~~~~~~~~~">
8157 <location
8158 file="res/values-sq/strings.xml"
8159 line="78"
8160 column="40"/>
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_5_to_9_songs&quot;>5 - 9 këngë&lt;/string>"
8167 errorLine2=" ~~~~~~~~~~~">
8168 <location
8169 file="res/values-sq/strings.xml"
8170 line="79"
8171 column="40"/>
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_30_to_60_seconds&quot;>30 - 60 秒&lt;/string>"
8178 errorLine2=" ~~~~~~~~~">
8179 <location
8180 file="res/values-zh-rHK/strings.xml"
8181 line="113"
8182 column="44"/>
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_1_to_2_minutes&quot;>1 - 2 分鐘&lt;/string>"
8189 errorLine2=" ~~~~~~~~">
8190 <location
8191 file="res/values-zh-rHK/strings.xml"
8192 line="114"
8193 column="42"/>
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_2_to_3_minutes&quot;>2 - 3 分鐘&lt;/string>"
8200 errorLine2=" ~~~~~~~~">
8201 <location
8202 file="res/values-zh-rHK/strings.xml"
8203 line="115"
8204 column="42"/>
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_3_to_4_minutes&quot;>3 - 4 分鐘&lt;/string>"
8211 errorLine2=" ~~~~~~~~">
8212 <location
8213 file="res/values-zh-rHK/strings.xml"
8214 line="116"
8215 column="42"/>
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_4_to_5_minutes&quot;>4 - 5 分鐘&lt;/string>"
8222 errorLine2=" ~~~~~~~~">
8223 <location
8224 file="res/values-zh-rHK/strings.xml"
8225 line="117"
8226 column="42"/>
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 sekundes&lt;/string>"
8233 errorLine2=" ~~~~~~~~~~~~~~~~">
8234 <location
8235 file="res/values-lv/strings.xml"
8236 line="118"
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_5_to_10_minutes&quot;>5 - 10 分鐘&lt;/string>"
8244 errorLine2=" ~~~~~~~~~">
8245 <location
8246 file="res/values-zh-rHK/strings.xml"
8247 line="118"
8248 column="43"/>
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_1_to_2_minutes&quot;>1 - 2 minūtes&lt;/string>"
8255 errorLine2=" ~~~~~~~~~~~~~">
8256 <location
8257 file="res/values-lv/strings.xml"
8258 line="119"
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_10_to_30_minutes&quot;>10 - 30 分鐘&lt;/string>"
8266 errorLine2=" ~~~~~~~~~~">
8267 <location
8268 file="res/values-zh-rHK/strings.xml"
8269 line="119"
8270 column="44"/>
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_2_to_3_minutes&quot;>2 - 3 minūtes&lt;/string>"
8277 errorLine2=" ~~~~~~~~~~~~~">
8278 <location
8279 file="res/values-lv/strings.xml"
8280 line="120"
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_minutes&quot;>30 - 60 分鐘&lt;/string>"
8288 errorLine2=" ~~~~~~~~~~">
8289 <location
8290 file="res/values-zh-rHK/strings.xml"
8291 line="120"
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_30_to_60_seconds&quot;>30 - 60 ಸೆಕೆಂಡ್‍ಗಳು&lt;/string>"
8299 errorLine2=" ~~~~~~~~~~~~~~~~~~~">
8300 <location
8301 file="res/values-kn/strings.xml"
8302 line="121"
8303 column="44"/>
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_3_to_4_minutes&quot;>3 - 4 minūtes&lt;/string>"
8310 errorLine2=" ~~~~~~~~~~~~~">
8311 <location
8312 file="res/values-lv/strings.xml"
8313 line="121"
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_30_to_60_seconds&quot;>30 - 60 sekondes&lt;/string>"
8321 errorLine2=" ~~~~~~~~~~~~~~~~">
8322 <location
8323 file="res/values-af/strings.xml"
8324 line="122"
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_30_to_60_seconds&quot;>30 - 60 ছেকেণ্ড&lt;/string>"
8332 errorLine2=" ~~~~~~~~~~~~~~~">
8333 <location
8334 file="res/values-as/strings.xml"
8335 line="122"
8336 column="44"/>
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_seconds&quot;>30 - 60 segundos&lt;/string>"
8343 errorLine2=" ~~~~~~~~~~~~~~~~">
8344 <location
8345 file="res/values-ast-rES/strings.xml"
8346 line="122"
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-be/strings.xml"
8357 line="122"
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_30_to_60_seconds&quot;>30 - 60 sekunder&lt;/string>"
8365 errorLine2=" ~~~~~~~~~~~~~~~~">
8366 <location
8367 file="res/values-da/strings.xml"
8368 line="122"
8369 column="44"/>
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 segundos&lt;/string>"
8376 errorLine2=" ~~~~~~~~~~~~~~~~">
8377 <location
8378 file="res/values-es-rUS/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 segundos&lt;/string>"
8387 errorLine2=" ~~~~~~~~~~~~~~~~">
8388 <location
8389 file="res/values-es/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 segundo&lt;/string>"
8398 errorLine2=" ~~~~~~~~~~~~~~~">
8399 <location
8400 file="res/values-eu/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-gu/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 sekundi&lt;/string>"
8420 errorLine2=" ~~~~~~~~~~~~~~~">
8421 <location
8422 file="res/values-hr/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 detik&lt;/string>"
8431 errorLine2=" ~~~~~~~~~~~~~">
8432 <location
8433 file="res/values-in/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_1_to_2_minutes&quot;>1 - 2 ನಿಮಿಷಗಳು&lt;/string>"
8442 errorLine2=" ~~~~~~~~~~~~~~">
8443 <location
8444 file="res/values-kn/strings.xml"
8445 line="122"
8446 column="42"/>
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 Sekonnen&lt;/string>"
8453 errorLine2=" ~~~~~~~~~~~~~~">
8454 <location
8455 file="res/values-lb/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 sek.&lt;/string>"
8464 errorLine2=" ~~~~~~~~~~~~">
8465 <location
8466 file="res/values-lt/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_4_to_5_minutes&quot;>4 - 5 minūtes&lt;/string>"
8475 errorLine2=" ~~~~~~~~~~~~~">
8476 <location
8477 file="res/values-lv/strings.xml"
8478 line="122"
8479 column="42"/>
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 സെക്കൻഡ്&lt;/string>"
8486 errorLine2=" ~~~~~~~~~~~~~~~~">
8487 <location
8488 file="res/values-ml/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_30_to_60_seconds&quot;>30 - 60 सेकंद&lt;/string>"
8497 errorLine2=" ~~~~~~~~~~~~~">
8498 <location
8499 file="res/values-mr/strings.xml"
8500 line="122"
8501 column="44"/>
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 sekunder&lt;/string>"
8508 errorLine2=" ~~~~~~~~~~~~~~~~">
8509 <location
8510 file="res/values-nb/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 seconden&lt;/string>"
8519 errorLine2=" ~~~~~~~~~~~~~~~~">
8520 <location
8521 file="res/values-nl/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_30_to_60_seconds&quot;>30 - 60 ସେକେଣ୍ଡ&lt;/string>"
8530 errorLine2=" ~~~~~~~~~~~~~~~">
8531 <location
8532 file="res/values-or/strings.xml"
8533 line="122"
8534 column="44"/>
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 sekund&lt;/string>"
8541 errorLine2=" ~~~~~~~~~~~~~~">
8542 <location
8543 file="res/values-pl/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-sr/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-sv/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 வினாடிகள்&lt;/string>"
8574 errorLine2=" ~~~~~~~~~~~~~~~">
8575 <location
8576 file="res/values-ta/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-te/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 سىكونتقىچە&lt;/string>"
8596 errorLine2=" ~~~~~~~~~~~~~~~~">
8597 <location
8598 file="res/values-ug/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-uk/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 giây&lt;/string>"
8618 errorLine2=" ~~~~~~~~~~~~">
8619 <location
8620 file="res/values-vi/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_1_to_2_minutes&quot;>1 - 2 minute&lt;/string>"
8629 errorLine2=" ~~~~~~~~~~~~">
8630 <location
8631 file="res/values-af/strings.xml"
8632 line="123"
8633 column="42"/>
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-ar/strings.xml"
8643 line="123"
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_1_to_2_minutes&quot;>1 - 2 মিনিট&lt;/string>"
8651 errorLine2=" ~~~~~~~~~~~">
8652 <location
8653 file="res/values-as/strings.xml"
8654 line="123"
8655 column="42"/>
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_1_to_2_minutes&quot;>1 - 2 minutos&lt;/string>"
8662 errorLine2=" ~~~~~~~~~~~~~">
8663 <location
8664 file="res/values-ast-rES/strings.xml"
8665 line="123"
8666 column="42"/>
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 saniyə&lt;/string>"
8673 errorLine2=" ~~~~~~~~~~~~~~">
8674 <location
8675 file="res/values-az/strings.xml"
8676 line="123"
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 хвіліны&lt;/string>"
8684 errorLine2=" ~~~~~~~~~~~~~">
8685 <location
8686 file="res/values-be/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-bg/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_30_to_60_seconds&quot;>30 - 60 segons&lt;/string>"
8706 errorLine2=" ~~~~~~~~~~~~~~">
8707 <location
8708 file="res/values-ca/strings.xml"
8709 line="123"
8710 column="44"/>
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_30_to_60_seconds&quot;>30 - 60 sekund&lt;/string>"
8717 errorLine2=" ~~~~~~~~~~~~~~">
8718 <location
8719 file="res/values-cs/strings.xml"
8720 line="123"
8721 column="44"/>
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_1_to_2_minutes&quot;>1 - 2 minutter&lt;/string>"
8728 errorLine2=" ~~~~~~~~~~~~~~">
8729 <location
8730 file="res/values-da/strings.xml"
8731 line="123"
8732 column="42"/>
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_30_to_60_seconds&quot;>30 - 60 δευτερόλεπτα&lt;/string>"
8739 errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
8740 <location
8741 file="res/values-el/strings.xml"
8742 line="123"
8743 column="44"/>
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 seconds&lt;/string>"
8750 errorLine2=" ~~~~~~~~~~~~~~~">
8751 <location
8752 file="res/values-en-rAU/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 seconds&lt;/string>"
8761 errorLine2=" ~~~~~~~~~~~~~~~">
8762 <location
8763 file="res/values-en-rCA/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 seconds&lt;/string>"
8772 errorLine2=" ~~~~~~~~~~~~~~~">
8773 <location
8774 file="res/values-en-rGB/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_30_to_60_seconds&quot;>30 - 60 seconds&lt;/string>"
8783 errorLine2=" ~~~~~~~~~~~~~~~">
8784 <location
8785 file="res/values-en-rIN/strings.xml"
8786 line="123"
8787 column="44"/>
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_1_to_2_minutes&quot;>1 - 2 minutos&lt;/string>"
8794 errorLine2=" ~~~~~~~~~~~~~">
8795 <location
8796 file="res/values-es-rUS/strings.xml"
8797 line="123"
8798 column="42"/>
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_1_to_2_minutes&quot;>1 - 2 minutos&lt;/string>"
8805 errorLine2=" ~~~~~~~~~~~~~">
8806 <location
8807 file="res/values-es/strings.xml"
8808 line="123"
8809 column="42"/>
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 sekundit&lt;/string>"
8816 errorLine2=" ~~~~~~~~~~~~~~~~">
8817 <location
8818 file="res/values-et/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_1_to_2_minutes&quot;>1 - 2 minutu&lt;/string>"
8827 errorLine2=" ~~~~~~~~~~~~">
8828 <location
8829 file="res/values-eu/strings.xml"
8830 line="123"
8831 column="42"/>
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 sekuntia&lt;/string>"
8838 errorLine2=" ~~~~~~~~~~~~~~~~">
8839 <location
8840 file="res/values-fi/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_30_to_60_seconds&quot;>30 - 60 sekonden&lt;/string>"
8849 errorLine2=" ~~~~~~~~~~~~~~~~">
8850 <location
8851 file="res/values-fy-rNL/strings.xml"
8852 line="123"
8853 column="44"/>
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_30_to_60_seconds&quot;>30 - 60 segundos&lt;/string>"
8860 errorLine2=" ~~~~~~~~~~~~~~~~">
8861 <location
8862 file="res/values-gl/strings.xml"
8863 line="123"
8864 column="44"/>
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_1_to_2_minutes&quot;>1 - 2 મિનિટ&lt;/string>"
8871 errorLine2=" ~~~~~~~~~~~">
8872 <location
8873 file="res/values-gu/strings.xml"
8874 line="123"
8875 column="42"/>
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 मिनट&lt;/string>"
8882 errorLine2=" ~~~~~~~~~~">
8883 <location
8884 file="res/values-hi/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_1_to_2_minutes&quot;>1 - 2 minute&lt;/string>"
8893 errorLine2=" ~~~~~~~~~~~~">
8894 <location
8895 file="res/values-hr/strings.xml"
8896 line="123"
8897 column="42"/>
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 másodperc&lt;/string>"
8904 errorLine2=" ~~~~~~~~~~~~~~~~~">
8905 <location
8906 file="res/values-hu/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_1_to_2_minutes&quot;>1 - 2 menit&lt;/string>"
8915 errorLine2=" ~~~~~~~~~~~">
8916 <location
8917 file="res/values-in/strings.xml"
8918 line="123"
8919 column="42"/>
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_30_to_60_seconds&quot;>30 - 60 secondi&lt;/string>"
8926 errorLine2=" ~~~~~~~~~~~~~~~">
8927 <location
8928 file="res/values-it/strings.xml"
8929 line="123"
8930 column="44"/>
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_2_to_3_minutes&quot;>2 - 3 ನಿಮಿಷಗಳು&lt;/string>"
8937 errorLine2=" ~~~~~~~~~~~~~~">
8938 <location
8939 file="res/values-kn/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_30_to_60_seconds&quot;>30-60초&lt;/string>"
8948 errorLine2=" ~~~~~~">
8949 <location
8950 file="res/values-ko/strings.xml"
8951 line="123"
8952 column="44"/>
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_1_to_2_minutes&quot;>1-2 Minutten&lt;/string>"
8959 errorLine2=" ~~~~~~~~~~~~">
8960 <location
8961 file="res/values-lb/strings.xml"
8962 line="123"
8963 column="42"/>
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 min.&lt;/string>"
8970 errorLine2=" ~~~~~~~~~~">
8971 <location
8972 file="res/values-lt/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_5_to_10_minutes&quot;>5 - 10 minūtes&lt;/string>"
8981 errorLine2=" ~~~~~~~~~~~~~~">
8982 <location
8983 file="res/values-lv/strings.xml"
8984 line="123"
8985 column="43"/>
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_1_to_2_minutes&quot;>1 - 2 മിനിറ്റ്&lt;/string>"
8992 errorLine2=" ~~~~~~~~~~~~~~">
8993 <location
8994 file="res/values-ml/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_1_to_2_minutes&quot;>1 - 2 मिनिटे&lt;/string>"
9003 errorLine2=" ~~~~~~~~~~~~">
9004 <location
9005 file="res/values-mr/strings.xml"
9006 line="123"
9007 column="42"/>
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 minutter&lt;/string>"
9014 errorLine2=" ~~~~~~~~~~~~~~">
9015 <location
9016 file="res/values-nb/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 minuten&lt;/string>"
9025 errorLine2=" ~~~~~~~~~~~~~">
9026 <location
9027 file="res/values-nl/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_1_to_2_minutes&quot;>1 - 2 ମିନିଟ୍‍&lt;/string>"
9036 errorLine2=" ~~~~~~~~~~~~~">
9037 <location
9038 file="res/values-or/strings.xml"
9039 line="123"
9040 column="42"/>
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 minuty&lt;/string>"
9047 errorLine2=" ~~~~~~~~~~~~">
9048 <location
9049 file="res/values-pl/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_30_to_60_seconds&quot;>30 - 60 segundos&lt;/string>"
9058 errorLine2=" ~~~~~~~~~~~~~~~~">
9059 <location
9060 file="res/values-pt-rPT/strings.xml"
9061 line="123"
9062 column="44"/>
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_30_to_60_seconds&quot;>30 - 60 de secunde&lt;/string>"
9069 errorLine2=" ~~~~~~~~~~~~~~~~~~">
9070 <location
9071 file="res/values-ro/strings.xml"
9072 line="123"
9073 column="44"/>
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_30_to_60_seconds&quot;>30 - 60 sekúnd&lt;/string>"
9080 errorLine2=" ~~~~~~~~~~~~~~">
9081 <location
9082 file="res/values-sk/strings.xml"
9083 line="123"
9084 column="44"/>
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_30_to_60_seconds&quot;>30 - 60 sekund&lt;/string>"
9091 errorLine2=" ~~~~~~~~~~~~~~">
9092 <location
9093 file="res/values-sl/strings.xml"
9094 line="123"
9095 column="44"/>
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 минута&lt;/string>"
9102 errorLine2=" ~~~~~~~~~~~~">
9103 <location
9104 file="res/values-sr/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_1_to_2_minutes&quot;>1 - 2 minuter&lt;/string>"
9113 errorLine2=" ~~~~~~~~~~~~~">
9114 <location
9115 file="res/values-sv/strings.xml"
9116 line="123"
9117 column="42"/>
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_1_to_2_minutes&quot;>1 - 2 நிமிடங்கள்&lt;/string>"
9124 errorLine2=" ~~~~~~~~~~~~~~~~">
9125 <location
9126 file="res/values-ta/strings.xml"
9127 line="123"
9128 column="42"/>
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_1_to_2_minutes&quot;>1 - 2 నిమిషాలు&lt;/string>"
9135 errorLine2=" ~~~~~~~~~~~~~~">
9136 <location
9137 file="res/values-te/strings.xml"
9138 line="123"
9139 column="42"/>
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 วินาที&lt;/string>"
9146 errorLine2=" ~~~~~~~~~~~~~~">
9147 <location
9148 file="res/values-th/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_30_to_60_seconds&quot;>30 - 60 saniye&lt;/string>"
9157 errorLine2=" ~~~~~~~~~~~~~~">
9158 <location
9159 file="res/values-tr/strings.xml"
9160 line="123"
9161 column="44"/>
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 مىنۇتقىچە&lt;/string>"
9168 errorLine2=" ~~~~~~~~~~~~~">
9169 <location
9170 file="res/values-ug/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-uk/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 phút&lt;/string>"
9190 errorLine2=" ~~~~~~~~~~">
9191 <location
9192 file="res/values-vi/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-zh-rCN/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_2_to_4_songs&quot;>2 - 4 首歌曲&lt;/string>"
9212 errorLine2=" ~~~~~~~~~">
9213 <location
9214 file="res/values-zh-rHK/strings.xml"
9215 line="123"
9216 column="40"/>
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_30_to_60_seconds&quot;>30 - 60 秒&lt;/string>"
9223 errorLine2=" ~~~~~~~~~">
9224 <location
9225 file="res/values-zh-rTW/strings.xml"
9226 line="123"
9227 column="44"/>
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_2_to_3_minutes&quot;>2 - 3 minute&lt;/string>"
9234 errorLine2=" ~~~~~~~~~~~~">
9235 <location
9236 file="res/values-af/strings.xml"
9237 line="124"
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 دقيقة&lt;/string>"
9245 errorLine2=" ~~~~~~~~~~~">
9246 <location
9247 file="res/values-ar/strings.xml"
9248 line="124"
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_2_to_3_minutes&quot;>2 - 3 মিনিট&lt;/string>"
9256 errorLine2=" ~~~~~~~~~~~">
9257 <location
9258 file="res/values-as/strings.xml"
9259 line="124"
9260 column="42"/>
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_3_minutes&quot;>2 - 3 minutos&lt;/string>"
9267 errorLine2=" ~~~~~~~~~~~~~">
9268 <location
9269 file="res/values-ast-rES/strings.xml"
9270 line="124"
9271 column="42"/>
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_1_to_2_minutes&quot;>1 - 2 dəqiqə&lt;/string>"
9278 errorLine2=" ~~~~~~~~~~~~">
9279 <location
9280 file="res/values-az/strings.xml"
9281 line="124"
9282 column="42"/>
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 хвіліны&lt;/string>"
9289 errorLine2=" ~~~~~~~~~~~~~">
9290 <location
9291 file="res/values-be/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-bg/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_1_to_2_minutes&quot;>1 - 2 minuts&lt;/string>"
9311 errorLine2=" ~~~~~~~~~~~~">
9312 <location
9313 file="res/values-ca/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_1_to_2_minutes&quot;>1 - 2 minuty&lt;/string>"
9322 errorLine2=" ~~~~~~~~~~~~">
9323 <location
9324 file="res/values-cs/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 munud&lt;/string>"
9333 errorLine2=" ~~~~~~~~~~~">
9334 <location
9335 file="res/values-cy/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 minutter&lt;/string>"
9344 errorLine2=" ~~~~~~~~~~~~~~">
9345 <location
9346 file="res/values-da/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-el/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 minutes&lt;/string>"
9366 errorLine2=" ~~~~~~~~~~~~~">
9367 <location
9368 file="res/values-en-rAU/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 minutes&lt;/string>"
9377 errorLine2=" ~~~~~~~~~~~~~">
9378 <location
9379 file="res/values-en-rCA/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 minutes&lt;/string>"
9388 errorLine2=" ~~~~~~~~~~~~~">
9389 <location
9390 file="res/values-en-rGB/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_1_to_2_minutes&quot;>1 - 2 minutes&lt;/string>"
9399 errorLine2=" ~~~~~~~~~~~~~">
9400 <location
9401 file="res/values-en-rIN/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_2_to_3_minutes&quot;>2 - 3 minutos&lt;/string>"
9410 errorLine2=" ~~~~~~~~~~~~~">
9411 <location
9412 file="res/values-es-rUS/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_2_to_3_minutes&quot;>2 - 3 minutos&lt;/string>"
9421 errorLine2=" ~~~~~~~~~~~~~">
9422 <location
9423 file="res/values-es/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 minutit&lt;/string>"
9432 errorLine2=" ~~~~~~~~~~~~~">
9433 <location
9434 file="res/values-et/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_2_to_3_minutes&quot;>2 - 3 minutu&lt;/string>"
9443 errorLine2=" ~~~~~~~~~~~~">
9444 <location
9445 file="res/values-eu/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 minuuttia&lt;/string>"
9454 errorLine2=" ~~~~~~~~~~~~~~~">
9455 <location
9456 file="res/values-fi/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_1_to_2_minutes&quot;>1 - 2 minuten&lt;/string>"
9465 errorLine2=" ~~~~~~~~~~~~~">
9466 <location
9467 file="res/values-fy-rNL/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_1_to_2_minutes&quot;>1 - 2 minutos&lt;/string>"
9476 errorLine2=" ~~~~~~~~~~~~~">
9477 <location
9478 file="res/values-gl/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_2_to_3_minutes&quot;>2 - 3 મિનિટ&lt;/string>"
9487 errorLine2=" ~~~~~~~~~~~">
9488 <location
9489 file="res/values-gu/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 मिनट&lt;/string>"
9498 errorLine2=" ~~~~~~~~~~">
9499 <location
9500 file="res/values-hi/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_2_to_3_minutes&quot;>2 - 3 minute&lt;/string>"
9509 errorLine2=" ~~~~~~~~~~~~">
9510 <location
9511 file="res/values-hr/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 perc&lt;/string>"
9520 errorLine2=" ~~~~~~~~~~">
9521 <location
9522 file="res/values-hu/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_2_to_3_minutes&quot;>2 - 3 menit&lt;/string>"
9531 errorLine2=" ~~~~~~~~~~~">
9532 <location
9533 file="res/values-in/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_1_to_2_minutes&quot;>1 - 2 minuti&lt;/string>"
9542 errorLine2=" ~~~~~~~~~~~~">
9543 <location
9544 file="res/values-it/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_3_to_4_minutes&quot;>3 - 4 ನಿಮಿಷಗಳು&lt;/string>"
9553 errorLine2=" ~~~~~~~~~~~~~~">
9554 <location
9555 file="res/values-kn/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_1_to_2_minutes&quot;>1-2분&lt;/string>"
9564 errorLine2=" ~~~~">
9565 <location
9566 file="res/values-ko/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_2_to_3_minutes&quot;>2-3 Minutten&lt;/string>"
9575 errorLine2=" ~~~~~~~~~~~~">
9576 <location
9577 file="res/values-lb/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 min.&lt;/string>"
9586 errorLine2=" ~~~~~~~~~~">
9587 <location
9588 file="res/values-lt/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_10_to_30_minutes&quot;>10 - 30 minūtes&lt;/string>"
9597 errorLine2=" ~~~~~~~~~~~~~~~">
9598 <location
9599 file="res/values-lv/strings.xml"
9600 line="124"
9601 column="44"/>
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_2_to_3_minutes&quot;>2 - 3 മിനിറ്റ്&lt;/string>"
9608 errorLine2=" ~~~~~~~~~~~~~~">
9609 <location
9610 file="res/values-ml/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_2_to_3_minutes&quot;>2 - 3 मिनिटे&lt;/string>"
9619 errorLine2=" ~~~~~~~~~~~~">
9620 <location
9621 file="res/values-mr/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 minutter&lt;/string>"
9630 errorLine2=" ~~~~~~~~~~~~~~">
9631 <location
9632 file="res/values-nb/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 minuten&lt;/string>"
9641 errorLine2=" ~~~~~~~~~~~~~">
9642 <location
9643 file="res/values-nl/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_2_to_3_minutes&quot;>2 - 3 ମିନିଟ୍‍&lt;/string>"
9652 errorLine2=" ~~~~~~~~~~~~~">
9653 <location
9654 file="res/values-or/strings.xml"
9655 line="124"
9656 column="42"/>
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 minut&lt;/string>"
9663 errorLine2=" ~~~~~~~~~~~">
9664 <location
9665 file="res/values-pl/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_1_to_2_minutes&quot;>1 - 2 minutos&lt;/string>"
9674 errorLine2=" ~~~~~~~~~~~~~">
9675 <location
9676 file="res/values-pt-rPT/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_1_to_2_minutes&quot;>1 - 2 minute&lt;/string>"
9685 errorLine2=" ~~~~~~~~~~~~">
9686 <location
9687 file="res/values-ro/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_1_to_2_minutes&quot;>1 - 2 minúty&lt;/string>"
9696 errorLine2=" ~~~~~~~~~~~~">
9697 <location
9698 file="res/values-sk/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_1_to_2_minutes&quot;>1 - 2 minut&lt;/string>"
9707 errorLine2=" ~~~~~~~~~~~">
9708 <location
9709 file="res/values-sl/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 минута&lt;/string>"
9718 errorLine2=" ~~~~~~~~~~~~">
9719 <location
9720 file="res/values-sr/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_2_to_3_minutes&quot;>2 - 3 minuter&lt;/string>"
9729 errorLine2=" ~~~~~~~~~~~~~">
9730 <location
9731 file="res/values-sv/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_2_to_3_minutes&quot;>2 - 3 நிமிடங்கள்&lt;/string>"
9740 errorLine2=" ~~~~~~~~~~~~~~~~">
9741 <location
9742 file="res/values-ta/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_2_to_3_minutes&quot;>2 - 3 నిమిషాలు&lt;/string>"
9751 errorLine2=" ~~~~~~~~~~~~~~">
9752 <location
9753 file="res/values-te/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 นาที&lt;/string>"
9762 errorLine2=" ~~~~~~~~~~">
9763 <location
9764 file="res/values-th/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_1_to_2_minutes&quot;>1 - 2 dakika&lt;/string>"
9773 errorLine2=" ~~~~~~~~~~~~">
9774 <location
9775 file="res/values-tr/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 مىنۇتقىچە&lt;/string>"
9784 errorLine2=" ~~~~~~~~~~~~~">
9785 <location
9786 file="res/values-ug/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-uk/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 phút&lt;/string>"
9806 errorLine2=" ~~~~~~~~~~">
9807 <location
9808 file="res/values-vi/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-zh-rCN/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_5_to_9_songs&quot;>5 - 9 首歌曲&lt;/string>"
9828 errorLine2=" ~~~~~~~~~">
9829 <location
9830 file="res/values-zh-rHK/strings.xml"
9831 line="124"
9832 column="40"/>
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_1_to_2_minutes&quot;>1 - 2 分鐘&lt;/string>"
9839 errorLine2=" ~~~~~~~~">
9840 <location
9841 file="res/values-zh-rTW/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_3_to_4_minutes&quot;>3 - 4 minute&lt;/string>"
9850 errorLine2=" ~~~~~~~~~~~~">
9851 <location
9852 file="res/values-af/strings.xml"
9853 line="125"
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 دقائق&lt;/string>"
9861 errorLine2=" ~~~~~~~~~~~">
9862 <location
9863 file="res/values-ar/strings.xml"
9864 line="125"
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_3_to_4_minutes&quot;>3 - 4 মিনিট&lt;/string>"
9872 errorLine2=" ~~~~~~~~~~~">
9873 <location
9874 file="res/values-as/strings.xml"
9875 line="125"
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_3_to_4_minutes&quot;>3 - 4 minutos&lt;/string>"
9883 errorLine2=" ~~~~~~~~~~~~~">
9884 <location
9885 file="res/values-ast-rES/strings.xml"
9886 line="125"
9887 column="42"/>
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_2_to_3_minutes&quot;>2 - 3 dəqiqə&lt;/string>"
9894 errorLine2=" ~~~~~~~~~~~~">
9895 <location
9896 file="res/values-az/strings.xml"
9897 line="125"
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 хвіліны&lt;/string>"
9905 errorLine2=" ~~~~~~~~~~~~~">
9906 <location
9907 file="res/values-be/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-bg/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_2_to_3_minutes&quot;>2 - 3 minuts&lt;/string>"
9927 errorLine2=" ~~~~~~~~~~~~">
9928 <location
9929 file="res/values-ca/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_2_to_3_minutes&quot;>2 - 3 minuty&lt;/string>"
9938 errorLine2=" ~~~~~~~~~~~~">
9939 <location
9940 file="res/values-cs/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 munud&lt;/string>"
9949 errorLine2=" ~~~~~~~~~~~">
9950 <location
9951 file="res/values-cy/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 minutter&lt;/string>"
9960 errorLine2=" ~~~~~~~~~~~~~~">
9961 <location
9962 file="res/values-da/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-el/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 minutes&lt;/string>"
9982 errorLine2=" ~~~~~~~~~~~~~">
9983 <location
9984 file="res/values-en-rAU/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 minutes&lt;/string>"
9993 errorLine2=" ~~~~~~~~~~~~~">
9994 <location
9995 file="res/values-en-rCA/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 minutes&lt;/string>"
10004 errorLine2=" ~~~~~~~~~~~~~">
10005 <location
10006 file="res/values-en-rGB/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_2_to_3_minutes&quot;>2 - 3 minutes&lt;/string>"
10015 errorLine2=" ~~~~~~~~~~~~~">
10016 <location
10017 file="res/values-en-rIN/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_3_to_4_minutes&quot;>3 - 4 minutos&lt;/string>"
10026 errorLine2=" ~~~~~~~~~~~~~">
10027 <location
10028 file="res/values-es-rUS/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_3_to_4_minutes&quot;>3 - 4 minutos&lt;/string>"
10037 errorLine2=" ~~~~~~~~~~~~~">
10038 <location
10039 file="res/values-es/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 minutit&lt;/string>"
10048 errorLine2=" ~~~~~~~~~~~~~">
10049 <location
10050 file="res/values-et/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_3_to_4_minutes&quot;>3 - 4 minutu&lt;/string>"
10059 errorLine2=" ~~~~~~~~~~~~">
10060 <location
10061 file="res/values-eu/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 minuuttia&lt;/string>"
10070 errorLine2=" ~~~~~~~~~~~~~~~">
10071 <location
10072 file="res/values-fi/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_2_to_3_minutes&quot;>2 - 3 minuten&lt;/string>"
10081 errorLine2=" ~~~~~~~~~~~~~">
10082 <location
10083 file="res/values-fy-rNL/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_2_to_3_minutes&quot;>2 - 3 minutos&lt;/string>"
10092 errorLine2=" ~~~~~~~~~~~~~">
10093 <location
10094 file="res/values-gl/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_3_to_4_minutes&quot;>3 - 4 મિનિટ&lt;/string>"
10103 errorLine2=" ~~~~~~~~~~~">
10104 <location
10105 file="res/values-gu/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 मिनट&lt;/string>"
10114 errorLine2=" ~~~~~~~~~~">
10115 <location
10116 file="res/values-hi/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_3_to_4_minutes&quot;>3 - 4 minute&lt;/string>"
10125 errorLine2=" ~~~~~~~~~~~~">
10126 <location
10127 file="res/values-hr/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 perc&lt;/string>"
10136 errorLine2=" ~~~~~~~~~~">
10137 <location
10138 file="res/values-hu/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_3_to_4_minutes&quot;>3 - 4 menit&lt;/string>"
10147 errorLine2=" ~~~~~~~~~~~">
10148 <location
10149 file="res/values-in/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_2_to_3_minutes&quot;>2 - 3 minuti&lt;/string>"
10158 errorLine2=" ~~~~~~~~~~~~">
10159 <location
10160 file="res/values-it/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_4_to_5_minutes&quot;>4 - 5 ನಿಮಿಷಗಳು&lt;/string>"
10169 errorLine2=" ~~~~~~~~~~~~~~">
10170 <location
10171 file="res/values-kn/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_2_to_3_minutes&quot;>2-3분&lt;/string>"
10180 errorLine2=" ~~~~">
10181 <location
10182 file="res/values-ko/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_3_to_4_minutes&quot;>3-4 Minutten&lt;/string>"
10191 errorLine2=" ~~~~~~~~~~~~">
10192 <location
10193 file="res/values-lb/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 min.&lt;/string>"
10202 errorLine2=" ~~~~~~~~~~">
10203 <location
10204 file="res/values-lt/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_30_to_60_minutes&quot;>30 - 60 minūtes&lt;/string>"
10213 errorLine2=" ~~~~~~~~~~~~~~~">
10214 <location
10215 file="res/values-lv/strings.xml"
10216 line="125"
10217 column="44"/>
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_3_to_4_minutes&quot;>3 - 4 മിനിറ്റ്&lt;/string>"
10224 errorLine2=" ~~~~~~~~~~~~~~">
10225 <location
10226 file="res/values-ml/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_3_to_4_minutes&quot;>3 - 4 मिनिटे&lt;/string>"
10235 errorLine2=" ~~~~~~~~~~~~">
10236 <location
10237 file="res/values-mr/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 minutter&lt;/string>"
10246 errorLine2=" ~~~~~~~~~~~~~~">
10247 <location
10248 file="res/values-nb/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 minuten&lt;/string>"
10257 errorLine2=" ~~~~~~~~~~~~~">
10258 <location
10259 file="res/values-nl/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_3_to_4_minutes&quot;>3 - 4 ମିନିଟ୍‍&lt;/string>"
10268 errorLine2=" ~~~~~~~~~~~~~">
10269 <location
10270 file="res/values-or/strings.xml"
10271 line="125"
10272 column="42"/>
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 minuty&lt;/string>"
10279 errorLine2=" ~~~~~~~~~~~~">
10280 <location
10281 file="res/values-pl/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_2_to_3_minutes&quot;>2 - 3 minutos&lt;/string>"
10290 errorLine2=" ~~~~~~~~~~~~~">
10291 <location
10292 file="res/values-pt-rPT/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_2_to_3_minutes&quot;>2 - 3 minute&lt;/string>"
10301 errorLine2=" ~~~~~~~~~~~~">
10302 <location
10303 file="res/values-ro/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_2_to_3_minutes&quot;>2 - 3 minúty&lt;/string>"
10312 errorLine2=" ~~~~~~~~~~~~">
10313 <location
10314 file="res/values-sk/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_2_to_3_minutes&quot;>2 - 3 minute&lt;/string>"
10323 errorLine2=" ~~~~~~~~~~~~">
10324 <location
10325 file="res/values-sl/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 минута&lt;/string>"
10334 errorLine2=" ~~~~~~~~~~~~">
10335 <location
10336 file="res/values-sr/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_3_to_4_minutes&quot;>3 - 4 minuter&lt;/string>"
10345 errorLine2=" ~~~~~~~~~~~~~">
10346 <location
10347 file="res/values-sv/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_3_to_4_minutes&quot;>3 - 4 நிமிடங்கள்&lt;/string>"
10356 errorLine2=" ~~~~~~~~~~~~~~~~">
10357 <location
10358 file="res/values-ta/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_3_to_4_minutes&quot;>3 - 4 నిమిషాలు&lt;/string>"
10367 errorLine2=" ~~~~~~~~~~~~~~">
10368 <location
10369 file="res/values-te/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 นาที&lt;/string>"
10378 errorLine2=" ~~~~~~~~~~">
10379 <location
10380 file="res/values-th/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_2_to_3_minutes&quot;>2 - 3 dakika&lt;/string>"
10389 errorLine2=" ~~~~~~~~~~~~">
10390 <location
10391 file="res/values-tr/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 مىنۇتقىچە&lt;/string>"
10400 errorLine2=" ~~~~~~~~~~~~~">
10401 <location
10402 file="res/values-ug/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-uk/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 phút&lt;/string>"
10422 errorLine2=" ~~~~~~~~~~">
10423 <location
10424 file="res/values-vi/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-zh-rCN/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 分鐘&lt;/string>"
10444 errorLine2=" ~~~~~~~~">
10445 <location
10446 file="res/values-zh-rTW/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_4_to_5_minutes&quot;>4 - 5 minute&lt;/string>"
10455 errorLine2=" ~~~~~~~~~~~~">
10456 <location
10457 file="res/values-af/strings.xml"
10458 line="126"
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-ar/strings.xml"
10469 line="126"
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_4_to_5_minutes&quot;>4 - 5 মিনিট&lt;/string>"
10477 errorLine2=" ~~~~~~~~~~~">
10478 <location
10479 file="res/values-as/strings.xml"
10480 line="126"
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_4_to_5_minutes&quot;>4 - 5 minutos&lt;/string>"
10488 errorLine2=" ~~~~~~~~~~~~~">
10489 <location
10490 file="res/values-ast-rES/strings.xml"
10491 line="126"
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_3_to_4_minutes&quot;>3 - 4 dəqiqə&lt;/string>"
10499 errorLine2=" ~~~~~~~~~~~~">
10500 <location
10501 file="res/values-az/strings.xml"
10502 line="126"
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 хвілін&lt;/string>"
10510 errorLine2=" ~~~~~~~~~~~~">
10511 <location
10512 file="res/values-be/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-bg/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_3_to_4_minutes&quot;>3 - 4 minuts&lt;/string>"
10532 errorLine2=" ~~~~~~~~~~~~">
10533 <location
10534 file="res/values-ca/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_3_to_4_minutes&quot;>3 - 4 minuty&lt;/string>"
10543 errorLine2=" ~~~~~~~~~~~~">
10544 <location
10545 file="res/values-cs/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_4_to_5_minutes&quot;>4 - 5 minutter&lt;/string>"
10554 errorLine2=" ~~~~~~~~~~~~~~">
10555 <location
10556 file="res/values-da/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_3_to_4_minutes&quot;>3 - 4 λεπτά&lt;/string>"
10565 errorLine2=" ~~~~~~~~~~~">
10566 <location
10567 file="res/values-el/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 minutes&lt;/string>"
10576 errorLine2=" ~~~~~~~~~~~~~">
10577 <location
10578 file="res/values-en-rAU/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 minutes&lt;/string>"
10587 errorLine2=" ~~~~~~~~~~~~~">
10588 <location
10589 file="res/values-en-rCA/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 minutes&lt;/string>"
10598 errorLine2=" ~~~~~~~~~~~~~">
10599 <location
10600 file="res/values-en-rGB/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_3_to_4_minutes&quot;>3 - 4 minutes&lt;/string>"
10609 errorLine2=" ~~~~~~~~~~~~~">
10610 <location
10611 file="res/values-en-rIN/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_4_to_5_minutes&quot;>4 - 5 minutos&lt;/string>"
10620 errorLine2=" ~~~~~~~~~~~~~">
10621 <location
10622 file="res/values-es-rUS/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_4_to_5_minutes&quot;>4 - 5 minutos&lt;/string>"
10631 errorLine2=" ~~~~~~~~~~~~~">
10632 <location
10633 file="res/values-es/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 minutit&lt;/string>"
10642 errorLine2=" ~~~~~~~~~~~~~">
10643 <location
10644 file="res/values-et/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_4_to_5_minutes&quot;>4 - 5 minutu&lt;/string>"
10653 errorLine2=" ~~~~~~~~~~~~">
10654 <location
10655 file="res/values-eu/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 minuuttia&lt;/string>"
10664 errorLine2=" ~~~~~~~~~~~~~~~">
10665 <location
10666 file="res/values-fi/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_3_to_4_minutes&quot;>3 - 4 minuten&lt;/string>"
10675 errorLine2=" ~~~~~~~~~~~~~">
10676 <location
10677 file="res/values-fy-rNL/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_3_to_4_minutes&quot;>3 - 4 minutos&lt;/string>"
10686 errorLine2=" ~~~~~~~~~~~~~">
10687 <location
10688 file="res/values-gl/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_4_to_5_minutes&quot;>4 - 5 મિનિટ&lt;/string>"
10697 errorLine2=" ~~~~~~~~~~~">
10698 <location
10699 file="res/values-gu/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 मिनट&lt;/string>"
10708 errorLine2=" ~~~~~~~~~~">
10709 <location
10710 file="res/values-hi/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_4_to_5_minutes&quot;>4 - 5 minuta&lt;/string>"
10719 errorLine2=" ~~~~~~~~~~~~">
10720 <location
10721 file="res/values-hr/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 perc&lt;/string>"
10730 errorLine2=" ~~~~~~~~~~">
10731 <location
10732 file="res/values-hu/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_4_to_5_minutes&quot;>4 - 5 menit&lt;/string>"
10741 errorLine2=" ~~~~~~~~~~~">
10742 <location
10743 file="res/values-in/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_3_to_4_minutes&quot;>3 - 4 minuti&lt;/string>"
10752 errorLine2=" ~~~~~~~~~~~~">
10753 <location
10754 file="res/values-it/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_5_to_10_minutes&quot;>5 - 10 ನಿಮಿಷಗಳು&lt;/string>"
10763 errorLine2=" ~~~~~~~~~~~~~~~">
10764 <location
10765 file="res/values-kn/strings.xml"
10766 line="126"
10767 column="43"/>
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_3_to_4_minutes&quot;>3-4분&lt;/string>"
10774 errorLine2=" ~~~~">
10775 <location
10776 file="res/values-ko/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_4_to_5_minutes&quot;>4-5 Minutten&lt;/string>"
10785 errorLine2=" ~~~~~~~~~~~~">
10786 <location
10787 file="res/values-lb/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 min.&lt;/string>"
10796 errorLine2=" ~~~~~~~~~~">
10797 <location
10798 file="res/values-lt/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_4_to_5_minutes&quot;>4 - 5 മിനിറ്റ്&lt;/string>"
10807 errorLine2=" ~~~~~~~~~~~~~~">
10808 <location
10809 file="res/values-ml/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_4_to_5_minutes&quot;>4 - 5 मिनिटे&lt;/string>"
10818 errorLine2=" ~~~~~~~~~~~~">
10819 <location
10820 file="res/values-mr/strings.xml"
10821 line="126"
10822 column="42"/>
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_4_to_5_minutes&quot;>4 - 5 minutter&lt;/string>"
10829 errorLine2=" ~~~~~~~~~~~~~~">
10830 <location
10831 file="res/values-nb/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 minuten&lt;/string>"
10840 errorLine2=" ~~~~~~~~~~~~~">
10841 <location
10842 file="res/values-nl/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 ମିନିଟ୍‍&lt;/string>"
10851 errorLine2=" ~~~~~~~~~~~~~">
10852 <location
10853 file="res/values-or/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 minut&lt;/string>"
10862 errorLine2=" ~~~~~~~~~~~">
10863 <location
10864 file="res/values-pl/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_3_to_4_minutes&quot;>3 - 4 minutos&lt;/string>"
10873 errorLine2=" ~~~~~~~~~~~~~">
10874 <location
10875 file="res/values-pt-rPT/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_3_to_4_minutes&quot;>3 - 4 minute&lt;/string>"
10884 errorLine2=" ~~~~~~~~~~~~">
10885 <location
10886 file="res/values-ro/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_3_to_4_minutes&quot;>3 - 4 minúty&lt;/string>"
10895 errorLine2=" ~~~~~~~~~~~~">
10896 <location
10897 file="res/values-sk/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_3_to_4_minutes&quot;>3 - 4 minute&lt;/string>"
10906 errorLine2=" ~~~~~~~~~~~~">
10907 <location
10908 file="res/values-sl/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 минута&lt;/string>"
10917 errorLine2=" ~~~~~~~~~~~~">
10918 <location
10919 file="res/values-sr/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_4_to_5_minutes&quot;>4 - 5 minuter&lt;/string>"
10928 errorLine2=" ~~~~~~~~~~~~~">
10929 <location
10930 file="res/values-sv/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_4_to_5_minutes&quot;>4 - 5 நிமிடங்கள்&lt;/string>"
10939 errorLine2=" ~~~~~~~~~~~~~~~~">
10940 <location
10941 file="res/values-ta/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_4_to_5_minutes&quot;>4 - 5 నిమిషాలు&lt;/string>"
10950 errorLine2=" ~~~~~~~~~~~~~~">
10951 <location
10952 file="res/values-te/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 นาที&lt;/string>"
10961 errorLine2=" ~~~~~~~~~~">
10962 <location
10963 file="res/values-th/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_3_to_4_minutes&quot;>3 - 4 dakika&lt;/string>"
10972 errorLine2=" ~~~~~~~~~~~~">
10973 <location
10974 file="res/values-tr/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 مىنۇتقىچە&lt;/string>"
10983 errorLine2=" ~~~~~~~~~~~~~">
10984 <location
10985 file="res/values-ug/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-uk/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 phút&lt;/string>"
11005 errorLine2=" ~~~~~~~~~~">
11006 <location
11007 file="res/values-vi/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-zh-rCN/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 分鐘&lt;/string>"
11027 errorLine2=" ~~~~~~~~">
11028 <location
11029 file="res/values-zh-rTW/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_5_to_10_minutes&quot;>5 - 10 minute&lt;/string>"
11038 errorLine2=" ~~~~~~~~~~~~~">
11039 <location
11040 file="res/values-af/strings.xml"
11041 line="127"
11042 column="43"/>
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-ar/strings.xml"
11052 line="127"
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_5_to_10_minutes&quot;>5 - 10 মিনিট&lt;/string>"
11060 errorLine2=" ~~~~~~~~~~~~">
11061 <location
11062 file="res/values-as/strings.xml"
11063 line="127"
11064 column="43"/>
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_5_to_10_minutes&quot;>5 - 10 minutos&lt;/string>"
11071 errorLine2=" ~~~~~~~~~~~~~~">
11072 <location
11073 file="res/values-ast-rES/strings.xml"
11074 line="127"
11075 column="43"/>
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_4_to_5_minutes&quot;>4 - 5 dəqiqə&lt;/string>"
11082 errorLine2=" ~~~~~~~~~~~~">
11083 <location
11084 file="res/values-az/strings.xml"
11085 line="127"
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 хвілін&lt;/string>"
11093 errorLine2=" ~~~~~~~~~~~~~">
11094 <location
11095 file="res/values-be/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-bg/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_4_to_5_minutes&quot;>4 - 5 minuts&lt;/string>"
11115 errorLine2=" ~~~~~~~~~~~~">
11116 <location
11117 file="res/values-ca/strings.xml"
11118 line="127"
11119 column="42"/>
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_4_to_5_minutes&quot;>4 - 5 minut&lt;/string>"
11126 errorLine2=" ~~~~~~~~~~~">
11127 <location
11128 file="res/values-cs/strings.xml"
11129 line="127"
11130 column="42"/>
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_5_to_10_minutes&quot;>5 - 10 minutter&lt;/string>"
11137 errorLine2=" ~~~~~~~~~~~~~~~">
11138 <location
11139 file="res/values-da/strings.xml"
11140 line="127"
11141 column="43"/>
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_4_to_5_minutes&quot;>4 - 5 λεπτά&lt;/string>"
11148 errorLine2=" ~~~~~~~~~~~">
11149 <location
11150 file="res/values-el/strings.xml"
11151 line="127"
11152 column="42"/>
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 minutes&lt;/string>"
11159 errorLine2=" ~~~~~~~~~~~~~">
11160 <location
11161 file="res/values-en-rAU/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 minutes&lt;/string>"
11170 errorLine2=" ~~~~~~~~~~~~~">
11171 <location
11172 file="res/values-en-rCA/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 minutes&lt;/string>"
11181 errorLine2=" ~~~~~~~~~~~~~">
11182 <location
11183 file="res/values-en-rGB/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_4_to_5_minutes&quot;>4 - 5 minutes&lt;/string>"
11192 errorLine2=" ~~~~~~~~~~~~~">
11193 <location
11194 file="res/values-en-rIN/strings.xml"
11195 line="127"
11196 column="42"/>
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_5_to_10_minutes&quot;>5 - 10 minutos&lt;/string>"
11203 errorLine2=" ~~~~~~~~~~~~~~">
11204 <location
11205 file="res/values-es-rUS/strings.xml"
11206 line="127"
11207 column="43"/>
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_5_to_10_minutes&quot;>5 - 10 minutos&lt;/string>"
11214 errorLine2=" ~~~~~~~~~~~~~~">
11215 <location
11216 file="res/values-es/strings.xml"
11217 line="127"
11218 column="43"/>
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 minutit&lt;/string>"
11225 errorLine2=" ~~~~~~~~~~~~~">
11226 <location
11227 file="res/values-et/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_5_to_10_minutes&quot;>5 - 10 minutu&lt;/string>"
11236 errorLine2=" ~~~~~~~~~~~~~">
11237 <location
11238 file="res/values-eu/strings.xml"
11239 line="127"
11240 column="43"/>
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 minuuttia&lt;/string>"
11247 errorLine2=" ~~~~~~~~~~~~~~~">
11248 <location
11249 file="res/values-fi/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_4_to_5_minutes&quot;>4 - 5 minuten&lt;/string>"
11258 errorLine2=" ~~~~~~~~~~~~~">
11259 <location
11260 file="res/values-fy-rNL/strings.xml"
11261 line="127"
11262 column="42"/>
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_4_to_5_minutes&quot;>4 - 5 minutos&lt;/string>"
11269 errorLine2=" ~~~~~~~~~~~~~">
11270 <location
11271 file="res/values-gl/strings.xml"
11272 line="127"
11273 column="42"/>
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_5_to_10_minutes&quot;>5 - 10 મિનિટ&lt;/string>"
11280 errorLine2=" ~~~~~~~~~~~~">
11281 <location
11282 file="res/values-gu/strings.xml"
11283 line="127"
11284 column="43"/>
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 मिनट&lt;/string>"
11291 errorLine2=" ~~~~~~~~~~~">
11292 <location
11293 file="res/values-hi/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_5_to_10_minutes&quot;>5 - 10 minuta&lt;/string>"
11302 errorLine2=" ~~~~~~~~~~~~~">
11303 <location
11304 file="res/values-hr/strings.xml"
11305 line="127"
11306 column="43"/>
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 perc&lt;/string>"
11313 errorLine2=" ~~~~~~~~~~">
11314 <location
11315 file="res/values-hu/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_5_to_10_minutes&quot;>5 - 10 menit&lt;/string>"
11324 errorLine2=" ~~~~~~~~~~~~">
11325 <location
11326 file="res/values-in/strings.xml"
11327 line="127"
11328 column="43"/>
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_4_to_5_minutes&quot;>4 - 5 minuti&lt;/string>"
11335 errorLine2=" ~~~~~~~~~~~~">
11336 <location
11337 file="res/values-it/strings.xml"
11338 line="127"
11339 column="42"/>
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_10_to_30_minutes&quot;>10 - 30 ನಿಮಿಷಗಳು&lt;/string>"
11346 errorLine2=" ~~~~~~~~~~~~~~~~">
11347 <location
11348 file="res/values-kn/strings.xml"
11349 line="127"
11350 column="44"/>
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_4_to_5_minutes&quot;>4-5분&lt;/string>"
11357 errorLine2=" ~~~~">
11358 <location
11359 file="res/values-ko/strings.xml"
11360 line="127"
11361 column="42"/>
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_5_to_10_minutes&quot;>5-10 Minutten&lt;/string>"
11368 errorLine2=" ~~~~~~~~~~~~~">
11369 <location
11370 file="res/values-lb/strings.xml"
11371 line="127"
11372 column="43"/>
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 min.&lt;/string>"
11379 errorLine2=" ~~~~~~~~~~~">
11380 <location
11381 file="res/values-lt/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_5_to_10_minutes&quot;>5 - 10 മിനിറ്റ്&lt;/string>"
11390 errorLine2=" ~~~~~~~~~~~~~~~">
11391 <location
11392 file="res/values-ml/strings.xml"
11393 line="127"
11394 column="43"/>
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_5_to_10_minutes&quot;>5 - 10 मिनिटे&lt;/string>"
11401 errorLine2=" ~~~~~~~~~~~~~">
11402 <location
11403 file="res/values-mr/strings.xml"
11404 line="127"
11405 column="43"/>
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_5_to_10_minutes&quot;>5 - 10 minutter&lt;/string>"
11412 errorLine2=" ~~~~~~~~~~~~~~~">
11413 <location
11414 file="res/values-nb/strings.xml"
11415 line="127"
11416 column="43"/>
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 minuten&lt;/string>"
11423 errorLine2=" ~~~~~~~~~~~~~~">
11424 <location
11425 file="res/values-nl/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 ମିନିଟ୍‍&lt;/string>"
11434 errorLine2=" ~~~~~~~~~~~~~~">
11435 <location
11436 file="res/values-or/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 minut&lt;/string>"
11445 errorLine2=" ~~~~~~~~~~~~">
11446 <location
11447 file="res/values-pl/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_4_to_5_minutes&quot;>4 - 5 minutos&lt;/string>"
11456 errorLine2=" ~~~~~~~~~~~~~">
11457 <location
11458 file="res/values-pt-rPT/strings.xml"
11459 line="127"
11460 column="42"/>
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_4_to_5_minutes&quot;>4 - 5 minute&lt;/string>"
11467 errorLine2=" ~~~~~~~~~~~~">
11468 <location
11469 file="res/values-ro/strings.xml"
11470 line="127"
11471 column="42"/>
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_4_to_5_minutes&quot;>4 - 5 minút&lt;/string>"
11478 errorLine2=" ~~~~~~~~~~~">
11479 <location
11480 file="res/values-sk/strings.xml"
11481 line="127"
11482 column="42"/>
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_4_to_5_minutes&quot;>4 - 5 minut&lt;/string>"
11489 errorLine2=" ~~~~~~~~~~~">
11490 <location
11491 file="res/values-sl/strings.xml"
11492 line="127"
11493 column="42"/>
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 минута&lt;/string>"
11500 errorLine2=" ~~~~~~~~~~~~~">
11501 <location
11502 file="res/values-sr/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_5_to_10_minutes&quot;>5 - 10 minuter&lt;/string>"
11511 errorLine2=" ~~~~~~~~~~~~~~">
11512 <location
11513 file="res/values-sv/strings.xml"
11514 line="127"
11515 column="43"/>
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_5_to_10_minutes&quot;>5 - 10 நிமிடங்கள்&lt;/string>"
11522 errorLine2=" ~~~~~~~~~~~~~~~~~">
11523 <location
11524 file="res/values-ta/strings.xml"
11525 line="127"
11526 column="43"/>
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_5_to_10_minutes&quot;>5 - 10 నిమిషాలు&lt;/string>"
11533 errorLine2=" ~~~~~~~~~~~~~~~">
11534 <location
11535 file="res/values-te/strings.xml"
11536 line="127"
11537 column="43"/>
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 นาที&lt;/string>"
11544 errorLine2=" ~~~~~~~~~~">
11545 <location
11546 file="res/values-th/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_4_to_5_minutes&quot;>4 - 5 dakika&lt;/string>"
11555 errorLine2=" ~~~~~~~~~~~~">
11556 <location
11557 file="res/values-tr/strings.xml"
11558 line="127"
11559 column="42"/>
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 مىنۇتقىچە&lt;/string>"
11566 errorLine2=" ~~~~~~~~~~~~~~">
11567 <location
11568 file="res/values-ug/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-uk/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 phút&lt;/string>"
11588 errorLine2=" ~~~~~~~~~~~">
11589 <location
11590 file="res/values-vi/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-zh-rCN/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 分鐘&lt;/string>"
11610 errorLine2=" ~~~~~~~~">
11611 <location
11612 file="res/values-zh-rTW/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_10_to_30_minutes&quot;>10 - 30 minute&lt;/string>"
11621 errorLine2=" ~~~~~~~~~~~~~~">
11622 <location
11623 file="res/values-af/strings.xml"
11624 line="128"
11625 column="44"/>
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-ar/strings.xml"
11635 line="128"
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_10_to_30_minutes&quot;>10 - 30 মিনিট&lt;/string>"
11643 errorLine2=" ~~~~~~~~~~~~~">
11644 <location
11645 file="res/values-as/strings.xml"
11646 line="128"
11647 column="44"/>
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_10_to_30_minutes&quot;>10 - 30 minutos&lt;/string>"
11654 errorLine2=" ~~~~~~~~~~~~~~~">
11655 <location
11656 file="res/values-ast-rES/strings.xml"
11657 line="128"
11658 column="44"/>
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_5_to_10_minutes&quot;>5 - 10 dəqiqə&lt;/string>"
11665 errorLine2=" ~~~~~~~~~~~~~">
11666 <location
11667 file="res/values-az/strings.xml"
11668 line="128"
11669 column="43"/>
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 хвілін&lt;/string>"
11676 errorLine2=" ~~~~~~~~~~~~~~">
11677 <location
11678 file="res/values-be/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-bg/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_5_to_10_minutes&quot;>5 - 10 minuts&lt;/string>"
11698 errorLine2=" ~~~~~~~~~~~~~">
11699 <location
11700 file="res/values-ca/strings.xml"
11701 line="128"
11702 column="43"/>
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_5_to_10_minutes&quot;>5 - 10 minut&lt;/string>"
11709 errorLine2=" ~~~~~~~~~~~~">
11710 <location
11711 file="res/values-cs/strings.xml"
11712 line="128"
11713 column="43"/>
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_10_to_30_minutes&quot;>10 - 30 minutter&lt;/string>"
11720 errorLine2=" ~~~~~~~~~~~~~~~~">
11721 <location
11722 file="res/values-da/strings.xml"
11723 line="128"
11724 column="44"/>
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_5_to_10_minutes&quot;>5 - 10 λεπτά&lt;/string>"
11731 errorLine2=" ~~~~~~~~~~~~">
11732 <location
11733 file="res/values-el/strings.xml"
11734 line="128"
11735 column="43"/>
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 minutes&lt;/string>"
11742 errorLine2=" ~~~~~~~~~~~~~~">
11743 <location
11744 file="res/values-en-rAU/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 minutes&lt;/string>"
11753 errorLine2=" ~~~~~~~~~~~~~~">
11754 <location
11755 file="res/values-en-rCA/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 minutes&lt;/string>"
11764 errorLine2=" ~~~~~~~~~~~~~~">
11765 <location
11766 file="res/values-en-rGB/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_5_to_10_minutes&quot;>5 - 10 minutes&lt;/string>"
11775 errorLine2=" ~~~~~~~~~~~~~~">
11776 <location
11777 file="res/values-en-rIN/strings.xml"
11778 line="128"
11779 column="43"/>
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_10_to_30_minutes&quot;>10 - 30 minutos&lt;/string>"
11786 errorLine2=" ~~~~~~~~~~~~~~~">
11787 <location
11788 file="res/values-es-rUS/strings.xml"
11789 line="128"
11790 column="44"/>
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_10_to_30_minutes&quot;>10 - 30 minutos&lt;/string>"
11797 errorLine2=" ~~~~~~~~~~~~~~~">
11798 <location
11799 file="res/values-es/strings.xml"
11800 line="128"
11801 column="44"/>
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 minutit&lt;/string>"
11808 errorLine2=" ~~~~~~~~~~~~~~">
11809 <location
11810 file="res/values-et/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_10_to_30_minutes&quot;>10 - 30 minutu&lt;/string>"
11819 errorLine2=" ~~~~~~~~~~~~~~">
11820 <location
11821 file="res/values-eu/strings.xml"
11822 line="128"
11823 column="44"/>
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 minuuttia&lt;/string>"
11830 errorLine2=" ~~~~~~~~~~~~~~~~">
11831 <location
11832 file="res/values-fi/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_5_to_10_minutes&quot;>5 - 10 minuten&lt;/string>"
11841 errorLine2=" ~~~~~~~~~~~~~~">
11842 <location
11843 file="res/values-fy-rNL/strings.xml"
11844 line="128"
11845 column="43"/>
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_5_to_10_minutes&quot;>5 - 10 minutos&lt;/string>"
11852 errorLine2=" ~~~~~~~~~~~~~~">
11853 <location
11854 file="res/values-gl/strings.xml"
11855 line="128"
11856 column="43"/>
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_10_to_30_minutes&quot;>10 - 30 મિનિટ&lt;/string>"
11863 errorLine2=" ~~~~~~~~~~~~~">
11864 <location
11865 file="res/values-gu/strings.xml"
11866 line="128"
11867 column="44"/>
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 मिनट&lt;/string>"
11874 errorLine2=" ~~~~~~~~~~~~">
11875 <location
11876 file="res/values-hi/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_10_to_30_minutes&quot;>10 - 30 minuta&lt;/string>"
11885 errorLine2=" ~~~~~~~~~~~~~~">
11886 <location
11887 file="res/values-hr/strings.xml"
11888 line="128"
11889 column="44"/>
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 perc&lt;/string>"
11896 errorLine2=" ~~~~~~~~~~~">
11897 <location
11898 file="res/values-hu/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_10_to_30_minutes&quot;>10 - 30 menit&lt;/string>"
11907 errorLine2=" ~~~~~~~~~~~~~">
11908 <location
11909 file="res/values-in/strings.xml"
11910 line="128"
11911 column="44"/>
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_5_to_10_minutes&quot;>5 - 10 minuti&lt;/string>"
11918 errorLine2=" ~~~~~~~~~~~~~">
11919 <location
11920 file="res/values-it/strings.xml"
11921 line="128"
11922 column="43"/>
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_30_to_60_minutes&quot;>30 - 60 ನಿಮಿಷಗಳು&lt;/string>"
11929 errorLine2=" ~~~~~~~~~~~~~~~~">
11930 <location
11931 file="res/values-kn/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_5_to_10_minutes&quot;>5-10분&lt;/string>"
11940 errorLine2=" ~~~~~">
11941 <location
11942 file="res/values-ko/strings.xml"
11943 line="128"
11944 column="43"/>
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_10_to_30_minutes&quot;>10-30 Minutten&lt;/string>"
11951 errorLine2=" ~~~~~~~~~~~~~~">
11952 <location
11953 file="res/values-lb/strings.xml"
11954 line="128"
11955 column="44"/>
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 min.&lt;/string>"
11962 errorLine2=" ~~~~~~~~~~~~">
11963 <location
11964 file="res/values-lt/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_2_to_4_songs&quot;>2 - 4 dziesmas&lt;/string>"
11973 errorLine2=" ~~~~~~~~~~~~~~">
11974 <location
11975 file="res/values-lv/strings.xml"
11976 line="128"
11977 column="40"/>
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_10_to_30_minutes&quot;>10 - 30 മിനിറ്റ്&lt;/string>"
11984 errorLine2=" ~~~~~~~~~~~~~~~~">
11985 <location
11986 file="res/values-ml/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_10_to_30_minutes&quot;>10 - 30 मिनिटे&lt;/string>"
11995 errorLine2=" ~~~~~~~~~~~~~~">
11996 <location
11997 file="res/values-mr/strings.xml"
11998 line="128"
11999 column="44"/>
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 minutter&lt;/string>"
12006 errorLine2=" ~~~~~~~~~~~~~~~~">
12007 <location
12008 file="res/values-nb/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 minuten&lt;/string>"
12017 errorLine2=" ~~~~~~~~~~~~~~~">
12018 <location
12019 file="res/values-nl/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_10_to_30_minutes&quot;>10 - 30 ମିନିଟ୍‍&lt;/string>"
12028 errorLine2=" ~~~~~~~~~~~~~~~">
12029 <location
12030 file="res/values-or/strings.xml"
12031 line="128"
12032 column="44"/>
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 minut&lt;/string>"
12039 errorLine2=" ~~~~~~~~~~~~~">
12040 <location
12041 file="res/values-pl/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_5_to_10_minutes&quot;>5 - 10 minutos&lt;/string>"
12050 errorLine2=" ~~~~~~~~~~~~~~">
12051 <location
12052 file="res/values-pt-rPT/strings.xml"
12053 line="128"
12054 column="43"/>
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_5_to_10_minutes&quot;>5 - 10 minute&lt;/string>"
12061 errorLine2=" ~~~~~~~~~~~~~">
12062 <location
12063 file="res/values-ro/strings.xml"
12064 line="128"
12065 column="43"/>
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_5_to_10_minutes&quot;>5 - 10 minút&lt;/string>"
12072 errorLine2=" ~~~~~~~~~~~~">
12073 <location
12074 file="res/values-sk/strings.xml"
12075 line="128"
12076 column="43"/>
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_5_to_10_minutes&quot;>5 - 10 minut&lt;/string>"
12083 errorLine2=" ~~~~~~~~~~~~">
12084 <location
12085 file="res/values-sl/strings.xml"
12086 line="128"
12087 column="43"/>
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 минута&lt;/string>"
12094 errorLine2=" ~~~~~~~~~~~~~~">
12095 <location
12096 file="res/values-sr/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_10_to_30_minutes&quot;>10 - 30 minuter&lt;/string>"
12105 errorLine2=" ~~~~~~~~~~~~~~~">
12106 <location
12107 file="res/values-sv/strings.xml"
12108 line="128"
12109 column="44"/>
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_10_to_30_minutes&quot;>10 - 30 நிமிடங்கள்&lt;/string>"
12116 errorLine2=" ~~~~~~~~~~~~~~~~~~">
12117 <location
12118 file="res/values-ta/strings.xml"
12119 line="128"
12120 column="44"/>
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_10_to_30_minutes&quot;>10 - 30 నిమిషాలు&lt;/string>"
12127 errorLine2=" ~~~~~~~~~~~~~~~~">
12128 <location
12129 file="res/values-te/strings.xml"
12130 line="128"
12131 column="44"/>
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 นาที&lt;/string>"
12138 errorLine2=" ~~~~~~~~~~~">
12139 <location
12140 file="res/values-th/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_5_to_10_minutes&quot;>5 - 10 dakika&lt;/string>"
12149 errorLine2=" ~~~~~~~~~~~~~">
12150 <location
12151 file="res/values-tr/strings.xml"
12152 line="128"
12153 column="43"/>
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 مىنۇتقىچە&lt;/string>"
12160 errorLine2=" ~~~~~~~~~~~~~~~">
12161 <location
12162 file="res/values-ug/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-uk/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 phút&lt;/string>"
12182 errorLine2=" ~~~~~~~~~~~~">
12183 <location
12184 file="res/values-vi/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-zh-rCN/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 分鐘&lt;/string>"
12204 errorLine2=" ~~~~~~~~~">
12205 <location
12206 file="res/values-zh-rTW/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_30_to_60_minutes&quot;>30 - 60 minute&lt;/string>"
12215 errorLine2=" ~~~~~~~~~~~~~~">
12216 <location
12217 file="res/values-af/strings.xml"
12218 line="129"
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-ar/strings.xml"
12229 line="129"
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_30_to_60_minutes&quot;>30 - 60 মিনিট&lt;/string>"
12237 errorLine2=" ~~~~~~~~~~~~~">
12238 <location
12239 file="res/values-as/strings.xml"
12240 line="129"
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_30_to_60_minutes&quot;>30 - 60 minutos&lt;/string>"
12248 errorLine2=" ~~~~~~~~~~~~~~~">
12249 <location
12250 file="res/values-ast-rES/strings.xml"
12251 line="129"
12252 column="44"/>
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_10_to_30_minutes&quot;>10 - 30 dəqiqə&lt;/string>"
12259 errorLine2=" ~~~~~~~~~~~~~~">
12260 <location
12261 file="res/values-az/strings.xml"
12262 line="129"
12263 column="44"/>
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 хвілін&lt;/string>"
12270 errorLine2=" ~~~~~~~~~~~~~~">
12271 <location
12272 file="res/values-be/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-bg/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_10_to_30_minutes&quot;>10 - 30 minuts&lt;/string>"
12292 errorLine2=" ~~~~~~~~~~~~~~">
12293 <location
12294 file="res/values-ca/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_10_to_30_minutes&quot;>10 - 30 minut&lt;/string>"
12303 errorLine2=" ~~~~~~~~~~~~~">
12304 <location
12305 file="res/values-cs/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 munud&lt;/string>"
12314 errorLine2=" ~~~~~~~~~~~~~">
12315 <location
12316 file="res/values-cy/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 minutter&lt;/string>"
12325 errorLine2=" ~~~~~~~~~~~~~~~~">
12326 <location
12327 file="res/values-da/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-el/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 minutes&lt;/string>"
12347 errorLine2=" ~~~~~~~~~~~~~~~">
12348 <location
12349 file="res/values-en-rAU/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 minutes&lt;/string>"
12358 errorLine2=" ~~~~~~~~~~~~~~~">
12359 <location
12360 file="res/values-en-rCA/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 minutes&lt;/string>"
12369 errorLine2=" ~~~~~~~~~~~~~~~">
12370 <location
12371 file="res/values-en-rGB/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_10_to_30_minutes&quot;>10 - 30 minutes&lt;/string>"
12380 errorLine2=" ~~~~~~~~~~~~~~~">
12381 <location
12382 file="res/values-en-rIN/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_30_to_60_minutes&quot;>30 - 60 minutos&lt;/string>"
12391 errorLine2=" ~~~~~~~~~~~~~~~">
12392 <location
12393 file="res/values-es-rUS/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_30_to_60_minutes&quot;>30 - 60 minutos&lt;/string>"
12402 errorLine2=" ~~~~~~~~~~~~~~~">
12403 <location
12404 file="res/values-es/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 minutit&lt;/string>"
12413 errorLine2=" ~~~~~~~~~~~~~~~">
12414 <location
12415 file="res/values-et/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_30_to_60_minutes&quot;>30 - 60 minutu&lt;/string>"
12424 errorLine2=" ~~~~~~~~~~~~~~">
12425 <location
12426 file="res/values-eu/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 minuuttia&lt;/string>"
12435 errorLine2=" ~~~~~~~~~~~~~~~~~">
12436 <location
12437 file="res/values-fi/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_10_to_30_minutes&quot;>10 - 30 minuten&lt;/string>"
12446 errorLine2=" ~~~~~~~~~~~~~~~">
12447 <location
12448 file="res/values-fy-rNL/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_10_to_30_minutes&quot;>10 - 30 minutos&lt;/string>"
12457 errorLine2=" ~~~~~~~~~~~~~~~">
12458 <location
12459 file="res/values-gl/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_30_to_60_minutes&quot;>30 - 60 મિનિટ&lt;/string>"
12468 errorLine2=" ~~~~~~~~~~~~~">
12469 <location
12470 file="res/values-gu/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 मिनट&lt;/string>"
12479 errorLine2=" ~~~~~~~~~~~~">
12480 <location
12481 file="res/values-hi/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_30_to_60_minutes&quot;>30 - 60 minuta&lt;/string>"
12490 errorLine2=" ~~~~~~~~~~~~~~">
12491 <location
12492 file="res/values-hr/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 perc&lt;/string>"
12501 errorLine2=" ~~~~~~~~~~~~">
12502 <location
12503 file="res/values-hu/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_30_to_60_minutes&quot;>30 - 60 menit&lt;/string>"
12512 errorLine2=" ~~~~~~~~~~~~~">
12513 <location
12514 file="res/values-in/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_10_to_30_minutes&quot;>10 - 30 minuti&lt;/string>"
12523 errorLine2=" ~~~~~~~~~~~~~~">
12524 <location
12525 file="res/values-it/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_10_to_30_minutes&quot;>10-30분&lt;/string>"
12534 errorLine2=" ~~~~~~">
12535 <location
12536 file="res/values-ko/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 Minutten&lt;/string>"
12545 errorLine2=" ~~~~~~~~~~~~~~">
12546 <location
12547 file="res/values-lb/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_30_to_60_minutes&quot;>30 - 60 min.&lt;/string>"
12556 errorLine2=" ~~~~~~~~~~~~">
12557 <location
12558 file="res/values-lt/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_5_to_9_songs&quot;>5 - 9 dziesmas&lt;/string>"
12567 errorLine2=" ~~~~~~~~~~~~~~">
12568 <location
12569 file="res/values-lv/strings.xml"
12570 line="129"
12571 column="40"/>
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_30_to_60_minutes&quot;>30 - 60 മിനിറ്റ്&lt;/string>"
12578 errorLine2=" ~~~~~~~~~~~~~~~~">
12579 <location
12580 file="res/values-ml/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_30_to_60_minutes&quot;>30 - 60 मिनिटे&lt;/string>"
12589 errorLine2=" ~~~~~~~~~~~~~~">
12590 <location
12591 file="res/values-mr/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 minutter&lt;/string>"
12600 errorLine2=" ~~~~~~~~~~~~~~~~">
12601 <location
12602 file="res/values-nb/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 minuten&lt;/string>"
12611 errorLine2=" ~~~~~~~~~~~~~~~">
12612 <location
12613 file="res/values-nl/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_30_to_60_minutes&quot;>30 - 60 ମିନିଟ୍‍&lt;/string>"
12622 errorLine2=" ~~~~~~~~~~~~~~~">
12623 <location
12624 file="res/values-or/strings.xml"
12625 line="129"
12626 column="44"/>
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 minut&lt;/string>"
12633 errorLine2=" ~~~~~~~~~~~~~">
12634 <location
12635 file="res/values-pl/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_10_to_30_minutes&quot;>10 - 30 minutos&lt;/string>"
12644 errorLine2=" ~~~~~~~~~~~~~~~">
12645 <location
12646 file="res/values-pt-rPT/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_10_to_30_minutes&quot;>10 - 30 de minute&lt;/string>"
12655 errorLine2=" ~~~~~~~~~~~~~~~~~">
12656 <location
12657 file="res/values-ro/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_10_to_30_minutes&quot;>10 - 30 minút&lt;/string>"
12666 errorLine2=" ~~~~~~~~~~~~~">
12667 <location
12668 file="res/values-sk/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_10_to_30_minutes&quot;>10 - 30 minut&lt;/string>"
12677 errorLine2=" ~~~~~~~~~~~~~">
12678 <location
12679 file="res/values-sl/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 минута&lt;/string>"
12688 errorLine2=" ~~~~~~~~~~~~~~">
12689 <location
12690 file="res/values-sr/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_30_to_60_minutes&quot;>30 - 60 minuter&lt;/string>"
12699 errorLine2=" ~~~~~~~~~~~~~~~">
12700 <location
12701 file="res/values-sv/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_30_to_60_minutes&quot;>30 - 60 நிமிடங்கள்&lt;/string>"
12710 errorLine2=" ~~~~~~~~~~~~~~~~~~">
12711 <location
12712 file="res/values-ta/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_30_to_60_minutes&quot;>30 - 60 నిమిషాలు&lt;/string>"
12721 errorLine2=" ~~~~~~~~~~~~~~~~">
12722 <location
12723 file="res/values-te/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 นาที&lt;/string>"
12732 errorLine2=" ~~~~~~~~~~~~">
12733 <location
12734 file="res/values-th/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_10_to_30_minutes&quot;>10 - 30 dakika&lt;/string>"
12743 errorLine2=" ~~~~~~~~~~~~~~">
12744 <location
12745 file="res/values-tr/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 مىنۇتقىچە&lt;/string>"
12754 errorLine2=" ~~~~~~~~~~~~~~~">
12755 <location
12756 file="res/values-ug/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-uk/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 phút&lt;/string>"
12776 errorLine2=" ~~~~~~~~~~~~">
12777 <location
12778 file="res/values-vi/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-zh-rCN/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 分鐘&lt;/string>"
12798 errorLine2=" ~~~~~~~~~~">
12799 <location
12800 file="res/values-zh-rTW/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-ar/strings.xml"
12812 line="130"
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 dəqiqə&lt;/string>"
12820 errorLine2=" ~~~~~~~~~~~~~~">
12821 <location
12822 file="res/values-az/strings.xml"
12823 line="130"
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 минути&lt;/string>"
12831 errorLine2=" ~~~~~~~~~~~~~~">
12832 <location
12833 file="res/values-bg/strings.xml"
12834 line="130"
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_30_to_60_minutes&quot;>30 - 60 minuts&lt;/string>"
12842 errorLine2=" ~~~~~~~~~~~~~~">
12843 <location
12844 file="res/values-ca/strings.xml"
12845 line="130"
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_30_to_60_minutes&quot;>30 - 60 minut&lt;/string>"
12853 errorLine2=" ~~~~~~~~~~~~~">
12854 <location
12855 file="res/values-cs/strings.xml"
12856 line="130"
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-el/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 minutes&lt;/string>"
12875 errorLine2=" ~~~~~~~~~~~~~~~">
12876 <location
12877 file="res/values-en-rAU/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 minutes&lt;/string>"
12886 errorLine2=" ~~~~~~~~~~~~~~~">
12887 <location
12888 file="res/values-en-rCA/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 minutes&lt;/string>"
12897 errorLine2=" ~~~~~~~~~~~~~~~">
12898 <location
12899 file="res/values-en-rGB/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 minutes&lt;/string>"
12908 errorLine2=" ~~~~~~~~~~~~~~~">
12909 <location
12910 file="res/values-en-rIN/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 minutit&lt;/string>"
12919 errorLine2=" ~~~~~~~~~~~~~~~">
12920 <location
12921 file="res/values-et/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 minuuttia&lt;/string>"
12930 errorLine2=" ~~~~~~~~~~~~~~~~~">
12931 <location
12932 file="res/values-fi/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 minuten&lt;/string>"
12941 errorLine2=" ~~~~~~~~~~~~~~~">
12942 <location
12943 file="res/values-fy-rNL/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 minutos&lt;/string>"
12952 errorLine2=" ~~~~~~~~~~~~~~~">
12953 <location
12954 file="res/values-gl/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 perc&lt;/string>"
12963 errorLine2=" ~~~~~~~~~~~~">
12964 <location
12965 file="res/values-hu/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 minuti&lt;/string>"
12974 errorLine2=" ~~~~~~~~~~~~~~">
12975 <location
12976 file="res/values-it/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분&lt;/string>"
12985 errorLine2=" ~~~~~~">
12986 <location
12987 file="res/values-ko/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 minutos&lt;/string>"
12996 errorLine2=" ~~~~~~~~~~~~~~~">
12997 <location
12998 file="res/values-pt-rPT/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 de minute&lt;/string>"
13007 errorLine2=" ~~~~~~~~~~~~~~~~~">
13008 <location
13009 file="res/values-ro/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 minút&lt;/string>"
13018 errorLine2=" ~~~~~~~~~~~~~">
13019 <location
13020 file="res/values-sk/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 minut&lt;/string>"
13029 errorLine2=" ~~~~~~~~~~~~~">
13030 <location
13031 file="res/values-sl/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-th/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 dakika&lt;/string>"
13051 errorLine2=" ~~~~~~~~~~~~~~">
13052 <location
13053 file="res/values-tr/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 分钟&lt;/string>"
13062 errorLine2=" ~~~~~~~~">
13063 <location
13064 file="res/values-zh-rCN/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 分鐘&lt;/string>"
13073 errorLine2=" ~~~~~~~~~~">
13074 <location
13075 file="res/values-zh-rTW/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_2_to_4_songs&quot;>2 - 4 ಹಾಡುಗಳು&lt;/string>"
13084 errorLine2=" ~~~~~~~~~~~~~">
13085 <location
13086 file="res/values-kn/strings.xml"
13087 line="131"
13088 column="40"/>
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_2_to_4_songs&quot;>2 - 4 liedjies&lt;/string>"
13095 errorLine2=" ~~~~~~~~~~~~~~">
13096 <location
13097 file="res/values-af/strings.xml"
13098 line="132"
13099 column="40"/>
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_2_to_4_songs&quot;>2 - 4 টা গীত&lt;/string>"
13106 errorLine2=" ~~~~~~~~~~~~">
13107 <location
13108 file="res/values-as/strings.xml"
13109 line="132"
13110 column="40"/>
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_2_to_4_songs&quot;>2 - 4 canciones&lt;/string>"
13117 errorLine2=" ~~~~~~~~~~~~~~~">
13118 <location
13119 file="res/values-ast-rES/strings.xml"
13120 line="132"
13121 column="40"/>
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_2_to_4_songs&quot;>2 - 4 трэка&lt;/string>"
13128 errorLine2=" ~~~~~~~~~~~">
13129 <location
13130 file="res/values-be/strings.xml"
13131 line="132"
13132 column="40"/>
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 sange&lt;/string>"
13139 errorLine2=" ~~~~~~~~~~~">
13140 <location
13141 file="res/values-da/strings.xml"
13142 line="132"
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 canciones&lt;/string>"
13150 errorLine2=" ~~~~~~~~~~~~~~~">
13151 <location
13152 file="res/values-es-rUS/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 canciones&lt;/string>"
13161 errorLine2=" ~~~~~~~~~~~~~~~">
13162 <location
13163 file="res/values-es/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 abesti&lt;/string>"
13172 errorLine2=" ~~~~~~~~~~~~">
13173 <location
13174 file="res/values-eu/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-gu/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 गाने&lt;/string>"
13194 errorLine2=" ~~~~~~~~~~">
13195 <location
13196 file="res/values-hi/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 pjesme&lt;/string>"
13205 errorLine2=" ~~~~~~~~~~~~">
13206 <location
13207 file="res/values-hr/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 lagu&lt;/string>"
13216 errorLine2=" ~~~~~~~~~~">
13217 <location
13218 file="res/values-in/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_5_to_9_songs&quot;>5 - 9 ಹಾಡುಗಳು&lt;/string>"
13227 errorLine2=" ~~~~~~~~~~~~~">
13228 <location
13229 file="res/values-kn/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 Lidder&lt;/string>"
13238 errorLine2=" ~~~~~~~~~~">
13239 <location
13240 file="res/values-lb/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 dainos&lt;/string>"
13249 errorLine2=" ~~~~~~~~~~~~">
13250 <location
13251 file="res/values-lt/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 ഗാനങ്ങൾ&lt;/string>"
13260 errorLine2=" ~~~~~~~~~~~~~">
13261 <location
13262 file="res/values-ml/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 गाणी&lt;/string>"
13271 errorLine2=" ~~~~~~~~~~">
13272 <location
13273 file="res/values-mr/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_2_to_4_songs&quot;>2 - 4 sanger&lt;/string>"
13282 errorLine2=" ~~~~~~~~~~~~">
13283 <location
13284 file="res/values-nb/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 nummers&lt;/string>"
13293 errorLine2=" ~~~~~~~~~~~~~">
13294 <location
13295 file="res/values-nl/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 ଗୀତ&lt;/string>"
13304 errorLine2=" ~~~~~~~~~">
13305 <location
13306 file="res/values-or/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 piosenek&lt;/string>"
13315 errorLine2=" ~~~~~~~~~~~~~~">
13316 <location
13317 file="res/values-pl/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-sr/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 låtar&lt;/string>"
13337 errorLine2=" ~~~~~~~~~~~">
13338 <location
13339 file="res/values-sv/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 பாடல்கள்&lt;/string>"
13348 errorLine2=" ~~~~~~~~~~~~~~">
13349 <location
13350 file="res/values-ta/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-te/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 نەغمە ناخشا&lt;/string>"
13370 errorLine2=" ~~~~~~~~~~~~~~~">
13371 <location
13372 file="res/values-ug/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-uk/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 bài hát&lt;/string>"
13392 errorLine2=" ~~~~~~~~~~~~~">
13393 <location
13394 file="res/values-vi/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_5_to_9_songs&quot;>5 - 9 liedjies&lt;/string>"
13403 errorLine2=" ~~~~~~~~~~~~~~">
13404 <location
13405 file="res/values-af/strings.xml"
13406 line="133"
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-ar/strings.xml"
13417 line="133"
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_5_to_9_songs&quot;>5 - 9 টা গীত&lt;/string>"
13425 errorLine2=" ~~~~~~~~~~~~">
13426 <location
13427 file="res/values-as/strings.xml"
13428 line="133"
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_5_to_9_songs&quot;>5 - 9 canciones&lt;/string>"
13436 errorLine2=" ~~~~~~~~~~~~~~~">
13437 <location
13438 file="res/values-ast-rES/strings.xml"
13439 line="133"
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 mahnı&lt;/string>"
13447 errorLine2=" ~~~~~~~~~~~">
13448 <location
13449 file="res/values-az/strings.xml"
13450 line="133"
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 трэкаў&lt;/string>"
13458 errorLine2=" ~~~~~~~~~~~~">
13459 <location
13460 file="res/values-be/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-bg/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_2_to_4_songs&quot;>2 - 4 cançons&lt;/string>"
13480 errorLine2=" ~~~~~~~~~~~~~">
13481 <location
13482 file="res/values-ca/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_2_to_4_songs&quot;>2 - 4 skladby&lt;/string>"
13491 errorLine2=" ~~~~~~~~~~~~~">
13492 <location
13493 file="res/values-cs/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 cân&lt;/string>"
13502 errorLine2=" ~~~~~~~~~">
13503 <location
13504 file="res/values-cy/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 sange&lt;/string>"
13513 errorLine2=" ~~~~~~~~~~~">
13514 <location
13515 file="res/values-da/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-el/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 songs&lt;/string>"
13535 errorLine2=" ~~~~~~~~~~~">
13536 <location
13537 file="res/values-en-rAU/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 songs&lt;/string>"
13546 errorLine2=" ~~~~~~~~~~~">
13547 <location
13548 file="res/values-en-rCA/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 songs&lt;/string>"
13557 errorLine2=" ~~~~~~~~~~~">
13558 <location
13559 file="res/values-en-rGB/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_2_to_4_songs&quot;>2 - 4 songs&lt;/string>"
13568 errorLine2=" ~~~~~~~~~~~">
13569 <location
13570 file="res/values-en-rIN/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_5_to_9_songs&quot;>5 - 9 canciones&lt;/string>"
13579 errorLine2=" ~~~~~~~~~~~~~~~">
13580 <location
13581 file="res/values-es-rUS/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_5_to_9_songs&quot;>5 - 9 canciones&lt;/string>"
13590 errorLine2=" ~~~~~~~~~~~~~~~">
13591 <location
13592 file="res/values-es/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 laulu&lt;/string>"
13601 errorLine2=" ~~~~~~~~~~~">
13602 <location
13603 file="res/values-et/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_5_to_9_songs&quot;>5 - 9 abesti&lt;/string>"
13612 errorLine2=" ~~~~~~~~~~~~">
13613 <location
13614 file="res/values-eu/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 kappaletta&lt;/string>"
13623 errorLine2=" ~~~~~~~~~~~~~~~~">
13624 <location
13625 file="res/values-fi/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_2_to_4_songs&quot;>2 - 4 nûmers&lt;/string>"
13634 errorLine2=" ~~~~~~~~~~~~">
13635 <location
13636 file="res/values-fy-rNL/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_2_to_4_songs&quot;>2 - 4 cancións&lt;/string>"
13645 errorLine2=" ~~~~~~~~~~~~~~">
13646 <location
13647 file="res/values-gl/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_5_to_9_songs&quot;>5 - 9 ગીતો&lt;/string>"
13656 errorLine2=" ~~~~~~~~~~">
13657 <location
13658 file="res/values-gu/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 गाने&lt;/string>"
13667 errorLine2=" ~~~~~~~~~">
13668 <location
13669 file="res/values-hi/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_5_to_9_songs&quot;>5 - 9 pjesama&lt;/string>"
13678 errorLine2=" ~~~~~~~~~~~~~">
13679 <location
13680 file="res/values-hr/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 dal&lt;/string>"
13689 errorLine2=" ~~~~~~~~~">
13690 <location
13691 file="res/values-hu/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_5_to_9_songs&quot;>5 - 9 lagu&lt;/string>"
13700 errorLine2=" ~~~~~~~~~~">
13701 <location
13702 file="res/values-in/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_2_to_4_songs&quot;>2 - 4 canzoni&lt;/string>"
13711 errorLine2=" ~~~~~~~~~~~~~">
13712 <location
13713 file="res/values-it/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_2_to_4_songs&quot;>2-4곡의 음악&lt;/string>"
13722 errorLine2=" ~~~~~~~~">
13723 <location
13724 file="res/values-ko/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 Lidder&lt;/string>"
13733 errorLine2=" ~~~~~~~~~~">
13734 <location
13735 file="res/values-lb/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_5_to_9_songs&quot;>5 - 9 dainos&lt;/string>"
13744 errorLine2=" ~~~~~~~~~~~~">
13745 <location
13746 file="res/values-lt/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 ഗാനങ്ങൾ&lt;/string>"
13755 errorLine2=" ~~~~~~~~~~~~~">
13756 <location
13757 file="res/values-ml/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_5_to_9_songs&quot;>5 - 9 गाणी&lt;/string>"
13766 errorLine2=" ~~~~~~~~~~">
13767 <location
13768 file="res/values-mr/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_5_to_9_songs&quot;>5 - 9 sanger&lt;/string>"
13777 errorLine2=" ~~~~~~~~~~~~">
13778 <location
13779 file="res/values-nb/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 nummers&lt;/string>"
13788 errorLine2=" ~~~~~~~~~~~~~">
13789 <location
13790 file="res/values-nl/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 ଗୀତ&lt;/string>"
13799 errorLine2=" ~~~~~~~~~">
13800 <location
13801 file="res/values-or/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 piosenek&lt;/string>"
13810 errorLine2=" ~~~~~~~~~~~~~~">
13811 <location
13812 file="res/values-pl/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_2_to_4_songs&quot;>2 - 4 músicas&lt;/string>"
13821 errorLine2=" ~~~~~~~~~~~~~">
13822 <location
13823 file="res/values-pt-rPT/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_2_to_4_songs&quot;>2 - 4 melodii&lt;/string>"
13832 errorLine2=" ~~~~~~~~~~~~~">
13833 <location
13834 file="res/values-ro/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_2_to_4_songs&quot;>2 - 4 skladby&lt;/string>"
13843 errorLine2=" ~~~~~~~~~~~~~">
13844 <location
13845 file="res/values-sk/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_2_to_4_songs&quot;>2 - 4 skladbe&lt;/string>"
13854 errorLine2=" ~~~~~~~~~~~~~">
13855 <location
13856 file="res/values-sl/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 песама&lt;/string>"
13865 errorLine2=" ~~~~~~~~~~~~">
13866 <location
13867 file="res/values-sr/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_5_to_9_songs&quot;>5 - 9 låtar&lt;/string>"
13876 errorLine2=" ~~~~~~~~~~~">
13877 <location
13878 file="res/values-sv/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_5_to_9_songs&quot;>5 - 9 பாடல்கள்&lt;/string>"
13887 errorLine2=" ~~~~~~~~~~~~~~">
13888 <location
13889 file="res/values-ta/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_5_to_9_songs&quot;>5 - 9 పాటలు&lt;/string>"
13898 errorLine2=" ~~~~~~~~~~~">
13899 <location
13900 file="res/values-te/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 เพลง&lt;/string>"
13909 errorLine2=" ~~~~~~~~~~">
13910 <location
13911 file="res/values-th/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_2_to_4_songs&quot;>2 - 4 şarkı&lt;/string>"
13920 errorLine2=" ~~~~~~~~~~~">
13921 <location
13922 file="res/values-tr/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 نەغمە ناخشا&lt;/string>"
13931 errorLine2=" ~~~~~~~~~~~~~~~">
13932 <location
13933 file="res/values-ug/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-uk/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 bài hát&lt;/string>"
13953 errorLine2=" ~~~~~~~~~~~~~">
13954 <location
13955 file="res/values-vi/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-zh-rCN/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 首樂曲&lt;/string>"
13975 errorLine2=" ~~~~~~~~~">
13976 <location
13977 file="res/values-zh-rTW/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-ar/strings.xml"
13989 line="134"
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 mahnı&lt;/string>"
13997 errorLine2=" ~~~~~~~~~~~">
13998 <location
13999 file="res/values-az/strings.xml"
14000 line="134"
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 песни&lt;/string>"
14008 errorLine2=" ~~~~~~~~~~~">
14009 <location
14010 file="res/values-bg/strings.xml"
14011 line="134"
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_5_to_9_songs&quot;>5 - 9 cançons&lt;/string>"
14019 errorLine2=" ~~~~~~~~~~~~~">
14020 <location
14021 file="res/values-ca/strings.xml"
14022 line="134"
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_5_to_9_songs&quot;>5 - 9 skladeb&lt;/string>"
14030 errorLine2=" ~~~~~~~~~~~~~">
14031 <location
14032 file="res/values-cs/strings.xml"
14033 line="134"
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-el/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 songs&lt;/string>"
14052 errorLine2=" ~~~~~~~~~~~">
14053 <location
14054 file="res/values-en-rAU/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 songs&lt;/string>"
14063 errorLine2=" ~~~~~~~~~~~">
14064 <location
14065 file="res/values-en-rCA/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 songs&lt;/string>"
14074 errorLine2=" ~~~~~~~~~~~">
14075 <location
14076 file="res/values-en-rGB/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 songs&lt;/string>"
14085 errorLine2=" ~~~~~~~~~~~">
14086 <location
14087 file="res/values-en-rIN/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 laulu&lt;/string>"
14096 errorLine2=" ~~~~~~~~~~~">
14097 <location
14098 file="res/values-et/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 kappaletta&lt;/string>"
14107 errorLine2=" ~~~~~~~~~~~~~~~~">
14108 <location
14109 file="res/values-fi/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 nûmers&lt;/string>"
14118 errorLine2=" ~~~~~~~~~~~~">
14119 <location
14120 file="res/values-fy-rNL/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 cancións&lt;/string>"
14129 errorLine2=" ~~~~~~~~~~~~~~">
14130 <location
14131 file="res/values-gl/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 dal&lt;/string>"
14140 errorLine2=" ~~~~~~~~~">
14141 <location
14142 file="res/values-hu/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 canzoni&lt;/string>"
14151 errorLine2=" ~~~~~~~~~~~~~">
14152 <location
14153 file="res/values-it/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곡의 음악&lt;/string>"
14162 errorLine2=" ~~~~~~~~">
14163 <location
14164 file="res/values-ko/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 músicas&lt;/string>"
14173 errorLine2=" ~~~~~~~~~~~~~">
14174 <location
14175 file="res/values-pt-rPT/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 melodii&lt;/string>"
14184 errorLine2=" ~~~~~~~~~~~~~">
14185 <location
14186 file="res/values-ro/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 skladieb&lt;/string>"
14195 errorLine2=" ~~~~~~~~~~~~~~">
14196 <location
14197 file="res/values-sk/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 skladb&lt;/string>"
14206 errorLine2=" ~~~~~~~~~~~~">
14207 <location
14208 file="res/values-sl/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-th/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 şarkı&lt;/string>"
14228 errorLine2=" ~~~~~~~~~~~">
14229 <location
14230 file="res/values-tr/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 首歌曲&lt;/string>"
14239 errorLine2=" ~~~~~~~">
14240 <location
14241 file="res/values-zh-rCN/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 首樂曲&lt;/string>"
14250 errorLine2=" ~~~~~~~~~">
14251 <location
14252 file="res/values-zh-rTW/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_30_to_60_seconds&quot;>30 - 60 seconds&lt;/string>"
14261 errorLine2=" ~~~~~~~~~~~~~~~">
14262 <location
14263 file="res/values/strings.xml"
14264 line="153"
14265 column="44"/>
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_1_to_2_minutes&quot;>1 - 2 minutes&lt;/string>"
14272 errorLine2=" ~~~~~~~~~~~~~">
14273 <location
14274 file="res/values/strings.xml"
14275 line="154"
14276 column="42"/>
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_2_to_3_minutes&quot;>2 - 3 minutes&lt;/string>"
14283 errorLine2=" ~~~~~~~~~~~~~">
14284 <location
14285 file="res/values/strings.xml"
14286 line="155"
14287 column="42"/>
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_3_to_4_minutes&quot;>3 - 4 minutes&lt;/string>"
14294 errorLine2=" ~~~~~~~~~~~~~">
14295 <location
14296 file="res/values/strings.xml"
14297 line="156"
14298 column="42"/>
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_4_to_5_minutes&quot;>4 - 5 minutes&lt;/string>"
14305 errorLine2=" ~~~~~~~~~~~~~">
14306 <location
14307 file="res/values/strings.xml"
14308 line="157"
14309 column="42"/>
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_5_to_10_minutes&quot;>5 - 10 minutes&lt;/string>"
14316 errorLine2=" ~~~~~~~~~~~~~~">
14317 <location
14318 file="res/values/strings.xml"
14319 line="158"
14320 column="43"/>
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_10_to_30_minutes&quot;>10 - 30 minutes&lt;/string>"
14327 errorLine2=" ~~~~~~~~~~~~~~~">
14328 <location
14329 file="res/values/strings.xml"
14330 line="159"
14331 column="44"/>
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_30_to_60_minutes&quot;>30 - 60 minutes&lt;/string>"
14338 errorLine2=" ~~~~~~~~~~~~~~~">
14339 <location
14340 file="res/values/strings.xml"
14341 line="160"
14342 column="44"/>
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_2_to_4_songs&quot;>2 - 4 songs&lt;/string>"
14349 errorLine2=" ~~~~~~~~~~~">
14350 <location
14351 file="res/values/strings.xml"
14352 line="164"
14353 column="40"/>
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_5_to_9_songs&quot;>5 - 9 songs&lt;/string>"
14360 errorLine2=" ~~~~~~~~~~~">
14361 <location
14362 file="res/values/strings.xml"
14363 line="165"
14364 column="40"/>
14365 </issue>
14366
14367 <issue
14368 id="TypographyQuotes"
14369 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14370 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>"
14371 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14372 <location
14373 file="res/values-is/strings.xml"
14374 line="27"
14375 column="45"/>
14376 </issue>
14377
14378 <issue
14379 id="TypographyQuotes"
14380 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14381 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>"
14382 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14383 <location
14384 file="res/values-is/strings.xml"
14385 line="28"
14386 column="42"/>
14387 </issue>
14388
14389 <issue
14390 id="TypographyQuotes"
14391 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14392 errorLine1=" &lt;string name=&quot;menu_shuffle_recent&quot;>\&quot;VIru kuerzem ofgespillt\&quot; mëschen&lt;/string>"
14393 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14394 <location
14395 file="res/values-lb/strings.xml"
14396 line="35"
14397 column="40"/>
14398 </issue>
14399
14400 <issue
14401 id="TypographyQuotes"
14402 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14403 errorLine1=" &lt;string name=&quot;menu_shuffle_last_added&quot;>\&quot;Fir d\&apos;lescht dobäigesat\&quot; mëschen&lt;/string>"
14404 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14405 <location
14406 file="res/values-lb/strings.xml"
14407 line="36"
14408 column="44"/>
14409 </issue>
14410
14411 <issue
14412 id="TypographyQuotes"
14413 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14414 errorLine1=" &lt;string name=&quot;clear_recent_title&quot;>לנקות רשימת \&quot;הושמעו לאחרונה\&quot;?&lt;/string>"
14415 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14416 <location
14417 file="res/values-iw/strings.xml"
14418 line="66"
14419 column="39"/>
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;clear_last_added&quot;>לנקות רשימת \&quot;נוספו לאחרונה\&quot;?&lt;/string>"
14426 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14427 <location
14428 file="res/values-iw/strings.xml"
14429 line="67"
14430 column="37"/>
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;clear_last_added&quot;>\&quot;Fir d\&apos;lescht dobäigesat\&quot; eidel maachen?&lt;/string>"
14437 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14438 <location
14439 file="res/values-lb/strings.xml"
14440 line="67"
14441 column="37"/>
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;context_menu_remove_from_recent&quot;>Aus \&quot;Kürzlich gehört\&quot; entfernen&lt;/string>"
14448 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14449 <location
14450 file="res/values-de/strings.xml"
14451 line="80"
14452 column="52"/>
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;context_menu_remove_from_recent&quot;>Aus der \&quot;Viru kuerzem gelauschtert\&quot;-Lëscht läschen&lt;/string>"
14459 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14460 <location
14461 file="res/values-lb/strings.xml"
14462 line="80"
14463 column="52"/>
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;settings_show_lyrics_summary&quot;>Fir Lidder déi en \&quot;srt\&quot;-Fichier hunn&lt;/string>"
14470 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14471 <location
14472 file="res/values-lb/strings.xml"
14473 line="100"
14474 column="49"/>
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;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>"
14481 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14482 <location
14483 file="res/values-lv/strings.xml"
14484 line="106"
14485 column="45"/>
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;empty_playlist_secondary&quot;>ಪ್ಲೇಪಟ್ಟಿಗೆ ಹಾಡುಗಳನ್ನು ಸೇರಿಸಲು, ಕಲಾವಿದ, ಆಲ್ಬಂ ಅಥವ ಹಾಡಿನ ಮೇಲಿರುವ ಆಯ್ಕೆಗಳ ಮೆನು ಸ್ಪರ್ಶಿಸಿ ಹಾಗು \&quot;ಪ್ಲೇಪಟ್ಟಿಗೆ ಸೇರಿಸಿ\&quot; ಆಯ್ಕೆಮಾಡಿ.&lt;/string>"
14492 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14493 <location
14494 file="res/values-kn/strings.xml"
14495 line="109"
14496 column="45"/>
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;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>"
14503 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14504 <location
14505 file="res/values-af/strings.xml"
14506 line="110"
14507 column="45"/>
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;empty_playlist_secondary&quot;>এই প্লে-সূচীলৈ গীত যোগ কৰিবলৈ, এটা গীত, এলবাম বা শিল্পীৰ ওপৰত বিকল্প মেনু টেপ কৰক আৰু \&quot;Add to playlist\&quot; চয়ন কৰক।&lt;/string>"
14514 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14515 <location
14516 file="res/values-as/strings.xml"
14517 line="110"
14518 column="45"/>
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;empty_playlist_secondary&quot;>Каб дадаць трэкі ў плэйліст, націсніце на меню опцый трэка, альбома ці выканаўца і выберыце \&quot;Дадаць у плэйліст\&quot;.&lt;/string>"
14525 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14526 <location
14527 file="res/values-be/strings.xml"
14528 line="110"
14529 column="45"/>
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;>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>"
14536 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14537 <location
14538 file="res/values-da/strings.xml"
14539 line="110"
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;>Abestiak erreprodukzio-zerrendara gehitzeko, sakatu abesti, album edo artista baten aukeren menuan eta hautatu \&quot;Gehitu erreprodukzio-zerrendara\&quot;.&lt;/string>"
14547 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14548 <location
14549 file="res/values-eu/strings.xml"
14550 line="110"
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;>આ પ્લેલિસ્ટમાં ગીતો ઉમેરવા, ગીત, આલ્બમ અથવા આર્ટિસ્ટ પરના વિકલ્પ મેન્યૂ પર ટૅપ કરો અને \&quot;પ્લેલિસ્ટમાં ઍડ કરો\&quot; પસંદ કરો.&lt;/string>"
14558 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14559 <location
14560 file="res/values-gu/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;प्लेसूची में जोड़ें\&quot; को चुनें।&lt;/string>"
14569 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14570 <location
14571 file="res/values-hi/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;>Za dodavanje pjesme u playlistu dodirnite opcije pjesme,albuma ili autora i odaberite \&quot;Dodaj u playlistu\&quot;&lt;/string>"
14580 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14581 <location
14582 file="res/values-hr/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;>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>"
14591 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14592 <location
14593 file="res/values-in/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;>כדי להוסיף שירים לרשימת ההשמעה הזו, הקש על תפריט האפשרויות של שיר, אלבום או אמן ובחר \&quot;הוסף לרשימת השמעה\&quot;.&lt;/string>"
14602 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14603 <location
14604 file="res/values-iw/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;>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>"
14613 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14614 <location
14615 file="res/values-lb/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-ml/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;>प्लेलिस्टमध्ये गाणी जोडण्यासाठी, गाणे, अल्बम किंवा कलाकारावरील पर्याय मेनू टॅप करा आणि \&quot;प्लेलिस्टमध्ये जोडा\&quot; निवडा.&lt;/string>"
14635 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14636 <location
14637 file="res/values-mr/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;>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>"
14646 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14647 <location
14648 file="res/values-nb/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-or/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;>Aby dodawać utwory do playlisty, użyj przycisku opcji na utworze, albumie lub artyście i wybierz \&quot;Dodaj do playlisty\&quot;.&lt;/string>"
14668 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14669 <location
14670 file="res/values-pl/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-sr/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;>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>"
14690 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14691 <location
14692 file="res/values-sv/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;>இந்த இசைப்பட்டியலில் பாடல்களை சேர்க்க, ஒரு பாடல், ஆல்பம் அல்லது கலைஞரில் உள்ள விருப்பங்கள் மெனுவை தட்டி \&quot;இசைப்பட்டியலில் சேர்\&quot;ஐ தேர்வுசெய்&lt;/string>"
14701 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14702 <location
14703 file="res/values-ta/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-te/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;>تىزىملىككە ناخشا قوشۇش ئۈچۈن، تىزىملىكتىكى ناخشا، پىلاستنكا ياكى ئارتىسنى تاللاڭ، ھەمدە \&quot;تىزىملىككە ناخشا قوشۇش\&quot;نى تاللاڭ.&lt;/string>"
14723 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14724 <location
14725 file="res/values-ug/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-uk/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;>Để 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>"
14745 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14746 <location
14747 file="res/values-vi/strings.xml"
14748 line="110"
14749 column="45"/>
14750 </issue>
14751
14752 <issue
14753 id="TypographyQuotes"
14754 message="Replace straight quotes (&apos;&apos;) with directional quotes (‘’, &amp;#8216; and &amp;#8217;) ?"
14755 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>"
14756 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14757 <location
14758 file="res/values-nl/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-ar/strings.xml"
14770 line="111"
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;>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>"
14778 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14779 <location
14780 file="res/values-az/strings.xml"
14781 line="111"
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-bg/strings.xml"
14792 line="111"
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;>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>"
14800 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14801 <location
14802 file="res/values-ca/strings.xml"
14803 line="111"
14804 column="45"/>
14805 </issue>
14806
14807 <issue
14808 id="TypographyQuotes"
14809 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14810 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>"
14811 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14812 <location
14813 file="res/values-cy/strings.xml"
14814 line="111"
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;>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>"
14822 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14823 <location
14824 file="res/values-de/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;>Για να προσθέσετε τραγούδια σε αυτήν τη λίστα αναπαραγωγής, ανοίξτε το μενού επιλογών σε ένα τραγούδι, άλμπουμ ή καλλιτέχνη και επιλέξτε \&quot;Προσθήκη στη λίστα αναπαραγωγής\&quot;.&lt;/string>"
14833 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14834 <location
14835 file="res/values-el/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;>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>"
14844 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14845 <location
14846 file="res/values-en-rAU/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;>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>"
14855 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14856 <location
14857 file="res/values-en-rCA/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;>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>"
14866 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14867 <location
14868 file="res/values-en-rGB/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;>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>"
14877 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14878 <location
14879 file="res/values-en-rIN/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;>Lugude lisamiseks käesolevasse esitlusnimekirja, koputa laulu, albumi või artisti lisavalikute menüül ja vali \&quot;Lisa esitlusloendisse\&quot;.&lt;/string>"
14888 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14889 <location
14890 file="res/values-et/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;>Lisätäksesi kappaleita soittolistaan, avaa valikko kappaleen, albumin tai esittäjän kohdalla ja valitse \&quot;Lisää soittolistaan\&quot;.&lt;/string>"
14899 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14900 <location
14901 file="res/values-fi/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;>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>"
14910 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14911 <location
14912 file="res/values-hu/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;>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>"
14921 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14922 <location
14923 file="res/values-it/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;>재생목록에 음악를 추가하려면 음악, 앨범, 또는 아티스트의 옵션 메뉴를 탭하여 연 뒤 \&quot;재생목록에 추가\&quot;를 선택하십시오.&lt;/string>"
14932 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14933 <location
14934 file="res/values-ko/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;>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>"
14943 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14944 <location
14945 file="res/values-pt-rBR/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;>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>"
14954 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14955 <location
14956 file="res/values-pt-rPT/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;>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>"
14965 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14966 <location
14967 file="res/values-ro/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;>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>"
14976 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14977 <location
14978 file="res/values-sk/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-th/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;>Bu çalma listesine şarkı eklemek için, seçeneklerden \&quot;Çalma listesine ekle\&quot;yi tıklayın.&lt;/string>"
14998 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14999 <location
15000 file="res/values-tr/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_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>"
15009 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15010 <location
15011 file="res/values-lv/strings.xml"
15012 line="114"
15013 column="42"/>
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_queue_secondary&quot;>ಪ್ಲೇ ಸರದಿಗೆ ಹಾಡುಗಳನ್ನು ಸೇರಿಸಲು, ಕಲಾವಿದ, ಆಲ್ಬಂ ಅಥವ ಹಾಡಿನ ಮೇಲಿರುವ ಆಯ್ಕೆಗಳ ಮೆನು ಸ್ಪರ್ಶಿಸಿ ಹಾಗು \&quot;ಸರದಿಗೆ ಸೇರಿಸಿ\&quot; ಆಯ್ಕೆಮಾಡಿ.&lt;/string>"
15020 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15021 <location
15022 file="res/values-kn/strings.xml"
15023 line="117"
15024 column="42"/>
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_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>"
15031 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15032 <location
15033 file="res/values-af/strings.xml"
15034 line="118"
15035 column="42"/>
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_queue_secondary&quot;>আপোনাৰ এই প্লে কিউলৈ গীত যোগ কৰিবলৈ, এটা গীত, এলবাম বা শিল্পীৰ ওপৰত বিকল্প মেনু টেপ কৰক আৰু \&quot;Add to queue\&quot; চয়ন কৰক।&lt;/string>"
15042 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15043 <location
15044 file="res/values-as/strings.xml"
15045 line="118"
15046 column="42"/>
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_queue_secondary&quot;>Каб дадаць трэкі ў чаргу прайгравання, націсніце на меню опцый трэка, альбома ці выканаўца і выберыце \&quot;Дадаць у чаргу\&quot;.&lt;/string>"
15053 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15054 <location
15055 file="res/values-be/strings.xml"
15056 line="118"
15057 column="42"/>
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;>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>"
15064 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15065 <location
15066 file="res/values-da/strings.xml"
15067 line="118"
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;>Abestiak erreprodukzio-zerrendara gehitzeko, sakatu abesti, album edo artista bat eta hautatu \&quot;Gehitu ilarara\&quot;.&lt;/string>"
15075 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15076 <location
15077 file="res/values-eu/strings.xml"
15078 line="118"
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;>તમારી પ્લે હરોળમાં ગીતો ઉમેરવા, ગીત, આલ્બમ અથવા આર્ટિસ્ટ પરના વિકલ્પ મેન્યૂ પર ટૅપ કરો અને \&quot;હરોળમાં ઍડ કરો\&quot; પસંદ કરો.&lt;/string>"
15086 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15087 <location
15088 file="res/values-gu/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;कतार में जोड़ें\&quot; को चुनें।&lt;/string>"
15097 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15098 <location
15099 file="res/values-hi/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;>Za dodavanje pjesmi u red za reprodukciju, dodirnite opcije pjesme,albuma ili autora i odaberite \&quot;Dodaj u red\&quot;&lt;/string>"
15108 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15109 <location
15110 file="res/values-hr/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;>Untuk menambahkan lagu ke Antrean Putar Anda, tekan menu pilihan pada lagu, album, atau artis dan pilih \&quot;Tambahkan ke antrean\&quot;.&lt;/string>"
15119 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15120 <location
15121 file="res/values-in/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;>כדי להוסיף שירים לתור ההשמעה שלך, הקש על תפריט האפשרויות של שיר, אלבום או אמן ובחר \&quot;הוסף לתור\&quot;.&lt;/string>"
15130 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15131 <location
15132 file="res/values-iw/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;>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>"
15141 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15142 <location
15143 file="res/values-lb/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-ml/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;>प्ले रांगेमध्ये गाणी जोडण्यासाठी, गाणे, अल्बम किंवा कलाकारावरील पर्याय मेनू टॅप करा आणि \&quot;प्ले रांगेमध्ये जोडा\&quot; निवडा.&lt;/string>"
15163 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15164 <location
15165 file="res/values-mr/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;>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>"
15174 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15175 <location
15176 file="res/values-nb/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-or/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;>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>"
15196 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15197 <location
15198 file="res/values-pl/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-sr/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;>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>"
15218 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15219 <location
15220 file="res/values-sv/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;>இந்த சாரையில் பாடல்களை சேர்க்க, ஒரு பாடல், ஆல்பம் அல்லது கலைஞரில் உள்ள விருப்பங்கள் மெனுவை தட்டி \&quot;வரிசையில் சேர்\&quot;ஐ தேர்வுசெய்.&lt;/string>"
15229 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15230 <location
15231 file="res/values-ta/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-te/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;>قويۇش سېپىگە ناخشا قوشۇش ئۈچۈن، تىزىملىكتىكى ناخشا، پىلاستنكا ياكى ئارتىسنى تاللاڭ، ھەمدە \&quot;سەپكە ناخشا قوشۇش\&quot;نى تاللاڭ.&lt;/string>"
15251 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15252 <location
15253 file="res/values-ug/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;>Để 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>"
15262 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15263 <location
15264 file="res/values-vi/strings.xml"
15265 line="118"
15266 column="42"/>
15267 </issue>
15268
15269 <issue
15270 id="TypographyQuotes"
15271 message="Replace straight quotes (&apos;&apos;) with directional quotes (‘’, &amp;#8216; and &amp;#8217;) ?"
15272 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>"
15273 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15274 <location
15275 file="res/values-nl/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-ar/strings.xml"
15287 line="119"
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;>Ç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>"
15295 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15296 <location
15297 file="res/values-az/strings.xml"
15298 line="119"
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-bg/strings.xml"
15309 line="119"
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;>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>"
15317 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15318 <location
15319 file="res/values-ca/strings.xml"
15320 line="119"
15321 column="42"/>
15322 </issue>
15323
15324 <issue
15325 id="TypographyQuotes"
15326 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15327 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>"
15328 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15329 <location
15330 file="res/values-cy/strings.xml"
15331 line="119"
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;>Um Titel zur Warteschlange hinzuzufügen, wählen Sie im Optionsmenü eines Titels, Albums oder Interpreten \&quot;Zur Warteschlange hinzufügen\&quot;.&lt;/string>"
15339 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15340 <location
15341 file="res/values-de/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;>Για να προσθέσετε τραγούδια στην ουρά αναπαραγωγής, ανοίξτε το μενού επιλογών σε ένα τραγούδι, άλμπουμ ή καλλιτέχνη και επιλέξτε \&quot;Προσθήκη στην ουρά\&quot;.&lt;/string>"
15350 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15351 <location
15352 file="res/values-el/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;>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>"
15361 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15362 <location
15363 file="res/values-en-rAU/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;>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>"
15372 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15373 <location
15374 file="res/values-en-rCA/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;>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>"
15383 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15384 <location
15385 file="res/values-en-rGB/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;>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>"
15394 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15395 <location
15396 file="res/values-en-rIN/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;>Lugude lisamiseks esitlusjärjekorda, koputa laulu, albumi või artisti lisavalikute menüül ja vali \&quot;Lisa järjekorda\&quot;.&lt;/string>"
15405 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15406 <location
15407 file="res/values-et/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;>Lisätäksesi kappaleita jonoon, avaa valikko kappaleen, albumin tai esittäjän kohdalla ja valitse \&quot;Lisää jonoon\&quot;.&lt;/string>"
15416 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15417 <location
15418 file="res/values-fi/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;>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>"
15427 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15428 <location
15429 file="res/values-gl/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;>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>"
15438 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15439 <location
15440 file="res/values-hu/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;>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>"
15449 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15450 <location
15451 file="res/values-it/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;>노래를 재생 대기열에 추가하려면 노래, 앨범, 또는 아티스트의 옵션 메뉴를 탭하여 연 뒤 \&quot;대기열에 추가\&quot;를 선택하십시오.&lt;/string>"
15460 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15461 <location
15462 file="res/values-ko/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;>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>"
15471 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15472 <location
15473 file="res/values-pt-rBR/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 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>"
15482 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15483 <location
15484 file="res/values-pt-rPT/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;>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>"
15493 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15494 <location
15495 file="res/values-ro/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;>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>"
15504 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15505 <location
15506 file="res/values-sk/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-th/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;>Ç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>"
15526 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15527 <location
15528 file="res/values-tr/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;error_playing_track&quot;>Der Titel \&quot;%1$s\&quot; konnte nicht abgespielt werden.&lt;/string>"
15537 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15538 <location
15539 file="res/values-de/strings.xml"
15540 line="120"
15541 column="40"/>
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;error_playing_track&quot;>Ei voi toistaa kappaletta \&quot;%1$s\&quot;&lt;/string>"
15548 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15549 <location
15550 file="res/values-fi/strings.xml"
15551 line="120"
15552 column="40"/>
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_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>"
15559 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15560 <location
15561 file="res/values/strings.xml"
15562 line="139"
15563 column="45"/>
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;>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>"
15570 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15571 <location
15572 file="res/values/strings.xml"
15573 line="147"
15574 column="42"/>
15575 </issue>
15576
15577 <issue
15578 id="ConvertToWebp"
15579 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">
15580 <location
15581 file="res/mipmap-xxxhdpi/ic_foreground.png"/>
15582 </issue>
15583
15584 <issue
15585 id="SelectableText"
15586 message="Consider making the text value selectable by specifying `android:textIsSelectable=&quot;true&quot;`"
15587 errorLine1=" &lt;TextView"
15588 errorLine2=" ~~~~~~~~">
15589 <location
15590 file="res/layout/activity_album_detail.xml"
15591 line="30"
15592 column="14"/>
15593 </issue>
15594
15595 <issue
15596 id="SelectableText"
15597 message="Consider making the text value selectable by specifying `android:textIsSelectable=&quot;true&quot;`"
15598 errorLine1=" &lt;TextView"
15599 errorLine2=" ~~~~~~~~">
15600 <location
15601 file="res/layout/activity_album_detail.xml"
15602 line="40"
15603 column="14"/>
15604 </issue>
15605
15606 <issue
15607 id="SelectableText"
15608 message="Consider making the text value selectable by specifying `android:textIsSelectable=&quot;true&quot;`"
15609 errorLine1=" &lt;TextView"
15610 errorLine2=" ~~~~~~~~">
15611 <location
15612 file="res/layout/activity_album_detail.xml"
15613 line="73"
15614 column="14"/>
15615 </issue>
15616
15617 <issue
15618 id="SelectableText"
15619 message="Consider making the text value selectable by specifying `android:textIsSelectable=&quot;true&quot;`"
15620 errorLine1=" &lt;TextView"
15621 errorLine2=" ~~~~~~~~">
15622 <location
15623 file="res/layout/activity_audio_preview.xml"
15624 line="80"
15625 column="14"/>
15626 </issue>
15627
15628 <issue
15629 id="SelectableText"
15630 message="Consider making the text value selectable by specifying `android:textIsSelectable=&quot;true&quot;`"
15631 errorLine1=" &lt;TextView"
15632 errorLine2=" ~~~~~~~~">
15633 <location
15634 file="res/layout/activity_audio_preview.xml"
15635 line="92"
15636 column="14"/>
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/album_detail_song.xml"
15646 line="36"
15647 column="10"/>
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/album_detail_song.xml"
15657 line="42"
15658 column="10"/>
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/app_widget_large.xml"
15668 line="87"
15669 column="10"/>
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/app_widget_large.xml"
15679 line="94"
15680 column="10"/>
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/app_widget_large.xml"
15690 line="100"
15691 column="10"/>
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/app_widget_large_alternate.xml"
15701 line="47"
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/app_widget_large_alternate.xml"
15712 line="54"
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_alternate.xml"
15723 line="60"
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_small.xml"
15734 line="59"
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_small.xml"
15745 line="66"
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_small.xml"
15756 line="72"
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/artist_detail_album.xml"
15767 line="42"
15768 column="14"/>
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/artist_detail_song.xml"
15778 line="39"
15779 column="6"/>
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/artist_detail_song.xml"
15789 line="49"
15790 column="6"/>
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/audio_player_header_bar.xml"
15800 line="37"
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/audio_player_header_bar.xml"
15811 line="49"
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/bottom_action_bar.xml"
15822 line="45"
15823 column="10"/>
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/bottom_action_bar.xml"
15833 line="49"
15834 column="10"/>
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/grid_items_normal.xml"
15844 line="51"
15845 column="18"/>
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/grid_items_normal.xml"
15855 line="59"
15856 column="18"/>
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/header_bar.xml"
15866 line="39"
15867 column="6"/>
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 xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
15874 errorLine2=" ~~~~~~~~">
15875 <location
15876 file="res/layout/list_header.xml"
15877 line="18"
15878 column="2"/>
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/list_item_common.xml"
15888 line="36"
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/list_item_common.xml"
15899 line="42"
15900 column="10"/>
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/list_item_common.xml"
15910 line="49"
15911 column="6"/>
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/list_item_queue.xml"
15921 line="44"
15922 column="10"/>
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"
15929 errorLine2=" ~~~~~~~~">
15930 <location
15931 file="res/layout/list_item_queue.xml"
15932 line="51"
15933 column="10"/>
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_top_tracks.xml"
15943 line="45"
15944 column="14"/>
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_top_tracks.xml"
15954 line="65"
15955 column="14"/>
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_top_tracks.xml"
15965 line="71"
15966 column="14"/>
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/main_album_flow.xml"
15976 line="43"
15977 column="6"/>
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/main_playback_controls.xml"
15987 line="27"
15988 column="6"/>
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/main_playback_controls.xml"
15998 line="57"
15999 column="6"/>
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/playlist_detail_header.xml"
16009 line="39"
16010 column="10"/>
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/playlist_detail_header.xml"
16020 line="49"
16021 column="10"/>
16022 </issue>
16023
16024 <issue
16025 id="NegativeMargin"
16026 message="Margin values should not be negative"
16027 errorLine1=" android:layout_marginTop=&quot;-2dp&quot; />"
16028 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
16029 <location
16030 file="res/layout/artist_detail_song.xml"
16031 line="57"
16032 column="9"/>
16033 </issue>
16034
16035 <issue
16036 id="ClickableViewAccessibility"
16037 message="`AudioPreviewActivity#onTouch` should call `View#performClick` when a click is detected"
16038 errorLine1=" public boolean onTouch(View v, MotionEvent event) {"
16039 errorLine2=" ~~~~~~~">
16040 <location
16041 file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
16042 line="527"
16043 column="20"/>
16044 </issue>
16045
16046 <issue
16047 id="ClickableViewAccessibility"
16048 message="`onTouch` lambda should call `View#performClick` when a click is detected"
16049 errorLine1=" mRootView.setOnTouchListener((v, me) -> true);"
16050 errorLine2=" ~~~~~~~~~~~~~~~">
16051 <location
16052 file="src/org/lineageos/eleven/ui/fragments/BaseFragment.java"
16053 line="77"
16054 column="38"/>
16055 </issue>
16056
16057 <issue
16058 id="ClickableViewAccessibility"
16059 message="Custom view `RepeatingImageButton` overrides `onTouchEvent` but not `performClick`"
16060 errorLine1=" public boolean onTouchEvent(final MotionEvent event) {"
16061 errorLine2=" ~~~~~~~~~~~~">
16062 <location
16063 file="src/org/lineageos/eleven/widgets/RepeatingImageButton.java"
16064 line="95"
16065 column="20"/>
16066 </issue>
16067
16068 <issue
16069 id="ClickableViewAccessibility"
16070 message="Custom view `SlidingUpPanelLayout` overrides `onTouchEvent` but not `performClick`"
16071 errorLine1=" public boolean onTouchEvent(MotionEvent ev) {"
16072 errorLine2=" ~~~~~~~~~~~~">
16073 <location
16074 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
16075 line="776"
16076 column="20"/>
16077 </issue>
16078
16079 <issue
16080 id="ContentDescription"
16081 message="Missing `contentDescription` attribute on image"
16082 errorLine1=" &lt;ImageView"
16083 errorLine2=" ~~~~~~~~~">
16084 <location
16085 file="res/layout/activity_album_detail.xml"
16086 line="15"
16087 column="10"/>
16088 </issue>
16089
16090 <issue
16091 id="ContentDescription"
16092 message="Missing `contentDescription` attribute on image"
16093 errorLine1=" &lt;ImageView"
16094 errorLine2=" ~~~~~~~~~">
16095 <location
16096 file="res/layout/activity_album_detail.xml"
16097 line="61"
16098 column="14"/>
16099 </issue>
16100
16101 <issue
16102 id="ContentDescription"
16103 message="Missing `contentDescription` attribute on image"
16104 errorLine1=" &lt;ImageView"
16105 errorLine2=" ~~~~~~~~~">
16106 <location
16107 file="res/layout/album_detail_song.xml"
16108 line="14"
16109 column="10"/>
16110 </issue>
16111
16112 <issue
16113 id="ContentDescription"
16114 message="Missing `contentDescription` attribute on image"
16115 errorLine1=" &lt;ImageView"
16116 errorLine2=" ~~~~~~~~~">
16117 <location
16118 file="res/layout/album_detail_song.xml"
16119 line="51"
16120 column="6"/>
16121 </issue>
16122
16123 <issue
16124 id="ContentDescription"
16125 message="Missing `contentDescription` attribute on image"
16126 errorLine1=" &lt;ImageView"
16127 errorLine2=" ~~~~~~~~~">
16128 <location
16129 file="res/layout/artist_detail_song.xml"
16130 line="5"
16131 column="6"/>
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/artist_detail_song.xml"
16141 line="25"
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/artist_detail_song.xml"
16152 line="59"
16153 column="6"/>
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/edit_queue_list_item.xml"
16163 line="22"
16164 column="6"/>
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/edit_queue_list_item.xml"
16174 line="38"
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/edit_track_list_item.xml"
16185 line="22"
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/edit_track_list_item.xml"
16196 line="42"
16197 column="6"/>
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/header_bar.xml"
16207 line="29"
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/header_bar.xml"
16218 line="51"
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/list_item_queue.xml"
16229 line="27"
16230 column="6"/>
16231 </issue>
16232
16233 <issue
16234 id="RtlSymmetry"
16235 message="When you define `paddingStart` you should probably also define `paddingEnd` for right-to-left symmetry"
16236 errorLine1=" android:paddingStart=&quot;@dimen/bottom_action_bar_info_padding_left&quot; >"
16237 errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
16238 <location
16239 file="res/layout/bottom_action_bar.xml"
16240 line="43"
16241 column="9"/>
16242 </issue>
16243
16244 <issue
16245 id="RtlSymmetry"
16246 message="When you define `paddingEnd` you should probably also define `paddingStart` for right-to-left symmetry"
16247 errorLine1=" android:paddingEnd=&quot;@dimen/list_item_general_margin&quot; >"
16248 errorLine2=" ~~~~~~~~~~~~~~~~~~">
16249 <location
16250 file="res/layout/edit_track_list_item.xml"
16251 line="37"
16252 column="9"/>
16253 </issue>
16254
16255 <issue
16256 id="RtlSymmetry"
16257 message="When you define `paddingStart` you should probably also define `paddingEnd` for right-to-left symmetry"
16258 errorLine1=" android:paddingStart=&quot;@dimen/drag_and_drop_width&quot;"
16259 errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
16260 <location
16261 file="res/layout/header_bar.xml"
16262 line="24"
16263 column="5"/>
16264 </issue>
16265
16266 <issue
16267 id="RtlSymmetry"
16268 message="When you define `paddingStart` you should probably also define `paddingEnd` for right-to-left symmetry"
16269 errorLine1=" android:paddingStart=&quot;@dimen/list_item_queue_text_padding_left&quot;"
16270 errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
16271 <location
16272 file="res/layout/list_item_queue.xml"
16273 line="41"
16274 column="9"/>
16275 </issue>
16276
16277 <issue
16278 id="RtlSymmetry"
16279 message="When you define `paddingStart` you should probably also define `paddingEnd` for right-to-left symmetry"
16280 errorLine1=" android:paddingStart=&quot;@dimen/list_preferred_item_padding&quot; >"
16281 errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
16282 <location
16283 file="res/layout/list_item_top_tracks.xml"
16284 line="63"
16285 column="13"/>
16286 </issue>
16287
16288 <issue
16289 id="RtlEnabled"
16290 message="The project references RTL attributes, but does not explicitly enable or disable RTL support with `android:supportsRtl` in the manifest">
16291 <location
16292 file="AndroidManifest.xml"/>
16293 </issue>
16294
16295 <issue
16296 id="KotlinPropertyAccess"
16297 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"
16298 errorLine1=" protected long getSourceId() {"
16299 errorLine2=" ~~~~~~~~~~~">
16300 <location
16301 file="src/org/lineageos/eleven/adapters/DetailSongAdapter.java"
16302 line="99"
16303 column="20"/>
16304 </issue>
16305
16306 <issue
16307 id="UnknownNullness"
16308 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16309 errorLine1=" public String mAlbumName;"
16310 errorLine2=" ~~~~~~">
16311 <location
16312 file="src/org/lineageos/eleven/model/Album.java"
16313 line="39"
16314 column="12"/>
16315 </issue>
16316
16317 <issue
16318 id="UnknownNullness"
16319 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16320 errorLine1=" public String mArtistName;"
16321 errorLine2=" ~~~~~~">
16322 <location
16323 file="src/org/lineageos/eleven/model/Album.java"
16324 line="44"
16325 column="12"/>
16326 </issue>
16327
16328 <issue
16329 id="UnknownNullness"
16330 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16331 errorLine1=" public String mYear;"
16332 errorLine2=" ~~~~~~">
16333 <location
16334 file="src/org/lineageos/eleven/model/Album.java"
16335 line="54"
16336 column="12"/>
16337 </issue>
16338
16339 <issue
16340 id="UnknownNullness"
16341 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16342 errorLine1=" public Album(final long albumId, final String albumName, final String artistName,"
16343 errorLine2=" ~~~~~~">
16344 <location
16345 file="src/org/lineageos/eleven/model/Album.java"
16346 line="65"
16347 column="44"/>
16348 </issue>
16349
16350 <issue
16351 id="UnknownNullness"
16352 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16353 errorLine1=" public Album(final long albumId, final String albumName, final String artistName,"
16354 errorLine2=" ~~~~~~">
16355 <location
16356 file="src/org/lineageos/eleven/model/Album.java"
16357 line="65"
16358 column="68"/>
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=" final int songNumber, final String albumYear) {"
16365 errorLine2=" ~~~~~~">
16366 <location
16367 file="src/org/lineageos/eleven/model/Album.java"
16368 line="66"
16369 column="46"/>
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 AlbumAdapter(final FragmentActivity context, final int layoutId,"
16376 errorLine2=" ~~~~~~~~~~~~~~~~">
16377 <location
16378 file="src/org/lineageos/eleven/adapters/AlbumAdapter.java"
16379 line="77"
16380 column="31"/>
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=" final Consumer&lt;Album> onItemClickedListener) {"
16387 errorLine2=" ~~~~~~~~~~~~~~~">
16388 <location
16389 file="src/org/lineageos/eleven/adapters/AlbumAdapter.java"
16390 line="78"
16391 column="31"/>
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 getItem(int pos) {"
16398 errorLine2=" ~~~~~">
16399 <location
16400 file="src/org/lineageos/eleven/adapters/AlbumAdapter.java"
16401 line="98"
16402 column="12"/>
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 void setData(List&lt;Album> albums) {"
16409 errorLine2=" ~~~~~~~~~~~">
16410 <location
16411 file="src/org/lineageos/eleven/adapters/AlbumAdapter.java"
16412 line="145"
16413 column="25"/>
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=" public void setPopupMenuClickedListener(IPopupMenuCallback.IListener listener) {"
16420 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
16421 <location
16422 file="src/org/lineageos/eleven/adapters/AlbumAdapter.java"
16423 line="184"
16424 column="45"/>
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 static void addAlbumArtistDetails(AlbumArtistDetails details) {"
16431 errorLine2=" ~~~~~~~~~~~~~~~~~~">
16432 <location
16433 file="src/org/lineageos/eleven/adapters/AlbumArtPagerAdapter.java"
16434 line="65"
16435 column="46"/>
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=" public static AlbumArtistDetails getAlbumArtistDetails(long audioId) {"
16442 errorLine2=" ~~~~~~~~~~~~~~~~~~">
16443 <location
16444 file="src/org/lineageos/eleven/adapters/AlbumArtPagerAdapter.java"
16445 line="81"
16446 column="19"/>
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 AlbumArtPagerAdapter(FragmentManager fm) {"
16453 errorLine2=" ~~~~~~~~~~~~~~~">
16454 <location
16455 file="src/org/lineageos/eleven/adapters/AlbumArtPagerAdapter.java"
16456 line="99"
16457 column="33"/>
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 static AlbumArtFragment newInstance(final long trackId) {"
16464 errorLine2=" ~~~~~~~~~~~~~~~~">
16465 <location
16466 file="src/org/lineageos/eleven/adapters/AlbumArtPagerAdapter.java"
16467 line="172"
16468 column="23"/>
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 onCreate(final Bundle savedInstanceState) {"
16475 errorLine2=" ~~~~~~">
16476 <location
16477 file="src/org/lineageos/eleven/adapters/AlbumArtPagerAdapter.java"
16478 line="181"
16479 column="36"/>
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 View onCreateView(final LayoutInflater inflater, final ViewGroup container,"
16486 errorLine2=" ~~~~">
16487 <location
16488 file="src/org/lineageos/eleven/adapters/AlbumArtPagerAdapter.java"
16489 line="190"
16490 column="16"/>
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 View onCreateView(final LayoutInflater inflater, final ViewGroup container,"
16497 errorLine2=" ~~~~~~~~~~~~~~">
16498 <location
16499 file="src/org/lineageos/eleven/adapters/AlbumArtPagerAdapter.java"
16500 line="190"
16501 column="40"/>
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 View onCreateView(final LayoutInflater inflater, final ViewGroup container,"
16508 errorLine2=" ~~~~~~~~~">
16509 <location
16510 file="src/org/lineageos/eleven/adapters/AlbumArtPagerAdapter.java"
16511 line="190"
16512 column="71"/>
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=" final Bundle savedInstanceState) {"
16519 errorLine2=" ~~~~~~">
16520 <location
16521 file="src/org/lineageos/eleven/adapters/AlbumArtPagerAdapter.java"
16522 line="191"
16523 column="40"/>
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 String mAlbumName;"
16530 errorLine2=" ~~~~~~">
16531 <location
16532 file="src/org/lineageos/eleven/model/AlbumArtistDetails.java"
16533 line="25"
16534 column="12"/>
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 String mArtistName;"
16541 errorLine2=" ~~~~~~">
16542 <location
16543 file="src/org/lineageos/eleven/model/AlbumArtistDetails.java"
16544 line="26"
16545 column="12"/>
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=" protected String getTitle() {"
16552 errorLine2=" ~~~~~~">
16553 <location
16554 file="src/org/lineageos/eleven/ui/fragments/AlbumDetailFragment.java"
16555 line="72"
16556 column="15"/>
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=" protected PopupMenuHelper createActionMenuHelper() {"
16563 errorLine2=" ~~~~~~~~~~~~~~~">
16564 <location
16565 file="src/org/lineageos/eleven/ui/fragments/AlbumDetailFragment.java"
16566 line="94"
16567 column="15"/>
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=" public void update(List&lt;Song> songs) {"
16574 errorLine2=" ~~~~~~~~~~">
16575 <location
16576 file="src/org/lineageos/eleven/ui/fragments/AlbumDetailFragment.java"
16577 line="183"
16578 column="24"/>
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 PagerAdapter.MusicFragments getMusicFragmentParent() {"
16585 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~">
16586 <location
16587 file="src/org/lineageos/eleven/ui/fragments/AlbumDetailFragment.java"
16588 line="215"
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 void onLoadFinished(@NonNull Loader&lt;List&lt;Song>> loader, List&lt;Song> data) {"
16596 errorLine2=" ~~~~~~~~~~">
16597 <location
16598 file="src/org/lineageos/eleven/ui/fragments/AlbumDetailFragment.java"
16599 line="229"
16600 column="68"/>
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=" public AlbumDetailSongAdapter(FragmentActivity activity) {"
16607 errorLine2=" ~~~~~~~~~~~~~~~~">
16608 <location
16609 file="src/org/lineageos/eleven/adapters/AlbumDetailSongAdapter.java"
16610 line="33"
16611 column="35"/>
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 Config.IdType getSourceType() {"
16618 errorLine2=" ~~~~~~~~~~~~~">
16619 <location
16620 file="src/org/lineageos/eleven/adapters/AlbumDetailSongAdapter.java"
16621 line="43"
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=" protected Holder newHolder(View root, ImageFetcher fetcher) {"
16629 errorLine2=" ~~~~~~">
16630 <location
16631 file="src/org/lineageos/eleven/adapters/AlbumDetailSongAdapter.java"
16632 line="47"
16633 column="15"/>
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=" protected Holder newHolder(View root, ImageFetcher fetcher) {"
16640 errorLine2=" ~~~~">
16641 <location
16642 file="src/org/lineageos/eleven/adapters/AlbumDetailSongAdapter.java"
16643 line="47"
16644 column="32"/>
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=" protected Holder newHolder(View root, ImageFetcher fetcher) {"
16651 errorLine2=" ~~~~~~~~~~~~">
16652 <location
16653 file="src/org/lineageos/eleven/adapters/AlbumDetailSongAdapter.java"
16654 line="47"
16655 column="43"/>
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 void onCreate(final Bundle savedInstanceState) {"
16662 errorLine2=" ~~~~~~">
16663 <location
16664 file="src/org/lineageos/eleven/ui/fragments/AlbumFragment.java"
16665 line="91"
16666 column="32"/>
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=" public View onCreateView(final LayoutInflater inflater, final ViewGroup container,"
16673 errorLine2=" ~~~~">
16674 <location
16675 file="src/org/lineageos/eleven/ui/fragments/AlbumFragment.java"
16676 line="108"
16677 column="12"/>
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=" public View onCreateView(final LayoutInflater inflater, final ViewGroup container,"
16684 errorLine2=" ~~~~~~~~~~~~~~">
16685 <location
16686 file="src/org/lineageos/eleven/ui/fragments/AlbumFragment.java"
16687 line="108"
16688 column="36"/>
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=" public View onCreateView(final LayoutInflater inflater, final ViewGroup container,"
16695 errorLine2=" ~~~~~~~~~">
16696 <location
16697 file="src/org/lineageos/eleven/ui/fragments/AlbumFragment.java"
16698 line="108"
16699 column="67"/>
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=" final Bundle savedInstanceState) {"
16706 errorLine2=" ~~~~~~">
16707 <location
16708 file="src/org/lineageos/eleven/ui/fragments/AlbumFragment.java"
16709 line="109"
16710 column="36"/>
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 Loader&lt;SectionListContainer&lt;Album>> onCreateLoader(final int id, final Bundle args) {"
16717 errorLine2=" ~~~~~~">
16718 <location
16719 file="src/org/lineageos/eleven/ui/fragments/AlbumFragment.java"
16720 line="149"
16721 column="83"/>
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=" final SectionListContainer&lt;Album> data) {"
16728 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~">
16729 <location
16730 file="src/org/lineageos/eleven/ui/fragments/AlbumFragment.java"
16731 line="158"
16732 column="38"/>
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 AlbumLoader(final Context context) {"
16739 errorLine2=" ~~~~~~~">
16740 <location
16741 file="src/org/lineageos/eleven/loaders/AlbumLoader.java"
16742 line="60"
16743 column="30"/>
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 AlbumLoader(final Context context, final Long artistId) {"
16750 errorLine2=" ~~~~~~~">
16751 <location
16752 file="src/org/lineageos/eleven/loaders/AlbumLoader.java"
16753 line="68"
16754 column="30"/>
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=" public AlbumLoader(final Context context, final Long artistId) {"
16761 errorLine2=" ~~~~">
16762 <location
16763 file="src/org/lineageos/eleven/loaders/AlbumLoader.java"
16764 line="68"
16765 column="53"/>
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 List&lt;Album> loadInBackground() {"
16772 errorLine2=" ~~~~~~~~~~~">
16773 <location
16774 file="src/org/lineageos/eleven/loaders/AlbumLoader.java"
16775 line="75"
16776 column="12"/>
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=" public static Cursor makeAlbumCursor(final Context context, final Long artistId) {"
16783 errorLine2=" ~~~~~~">
16784 <location
16785 file="src/org/lineageos/eleven/loaders/AlbumLoader.java"
16786 line="137"
16787 column="19"/>
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 static Cursor makeAlbumCursor(final Context context, final Long artistId) {"
16794 errorLine2=" ~~~~~~~">
16795 <location
16796 file="src/org/lineageos/eleven/loaders/AlbumLoader.java"
16797 line="137"
16798 column="48"/>
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 static Cursor makeAlbumCursor(final Context context, final Long artistId) {"
16805 errorLine2=" ~~~~">
16806 <location
16807 file="src/org/lineageos/eleven/loaders/AlbumLoader.java"
16808 line="137"
16809 column="71"/>
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=" protected Album mAlbum;"
16816 errorLine2=" ~~~~~">
16817 <location
16818 file="src/org/lineageos/eleven/utils/AlbumPopupMenuHelper.java"
16819 line="35"
16820 column="15"/>
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 AlbumPopupMenuHelper(Activity activity, FragmentManager fragmentManager) {"
16827 errorLine2=" ~~~~~~~~">
16828 <location
16829 file="src/org/lineageos/eleven/utils/AlbumPopupMenuHelper.java"
16830 line="37"
16831 column="33"/>
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 AlbumPopupMenuHelper(Activity activity, FragmentManager fragmentManager) {"
16838 errorLine2=" ~~~~~~~~~~~~~~~">
16839 <location
16840 file="src/org/lineageos/eleven/utils/AlbumPopupMenuHelper.java"
16841 line="37"
16842 column="52"/>
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 abstract Album getAlbum(int position);"
16849 errorLine2=" ~~~~~">
16850 <location
16851 file="src/org/lineageos/eleven/utils/AlbumPopupMenuHelper.java"
16852 line="42"
16853 column="21"/>
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 PopupMenuType onPreparePopupMenu(int position) {"
16860 errorLine2=" ~~~~~~~~~~~~~">
16861 <location
16862 file="src/org/lineageos/eleven/utils/AlbumPopupMenuHelper.java"
16863 line="45"
16864 column="12"/>
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 long[] getIdList() {"
16871 errorLine2=" ~~~~~~">
16872 <location
16873 file="src/org/lineageos/eleven/utils/AlbumPopupMenuHelper.java"
16874 line="56"
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=" protected Config.IdType getSourceType() {"
16882 errorLine2=" ~~~~~~~~~~~~~">
16883 <location
16884 file="src/org/lineageos/eleven/utils/AlbumPopupMenuHelper.java"
16885 line="66"
16886 column="15"/>
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=" protected String getArtistName() {"
16893 errorLine2=" ~~~~~~">
16894 <location
16895 file="src/org/lineageos/eleven/utils/AlbumPopupMenuHelper.java"
16896 line="79"
16897 column="15"/>
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 boolean onMenuItemClick(MenuItem item) {"
16904 errorLine2=" ~~~~~~~~">
16905 <location
16906 file="src/org/lineageos/eleven/utils/AlbumPopupMenuHelper.java"
16907 line="84"
16908 column="36"/>
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=" protected void updateMenuIds(PopupMenuType type, TreeSet&lt;Integer> set) {"
16915 errorLine2=" ~~~~~~~~~~~~~">
16916 <location
16917 file="src/org/lineageos/eleven/utils/AlbumPopupMenuHelper.java"
16918 line="100"
16919 column="34"/>
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 void updateMenuIds(PopupMenuType type, TreeSet&lt;Integer> set) {"
16926 errorLine2=" ~~~~~~~~~~~~~~~~">
16927 <location
16928 file="src/org/lineageos/eleven/utils/AlbumPopupMenuHelper.java"
16929 line="100"
16930 column="54"/>
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=" public AlbumScrimImage(Context context, AttributeSet attrs) {"
16937 errorLine2=" ~~~~~~~">
16938 <location
16939 file="src/org/lineageos/eleven/widgets/AlbumScrimImage.java"
16940 line="53"
16941 column="28"/>
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=" public AlbumScrimImage(Context context, AttributeSet attrs) {"
16948 errorLine2=" ~~~~~~~~~~~~">
16949 <location
16950 file="src/org/lineageos/eleven/widgets/AlbumScrimImage.java"
16951 line="53"
16952 column="45"/>
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 ImageView getImageView() {"
16959 errorLine2=" ~~~~~~~~~">
16960 <location
16961 file="src/org/lineageos/eleven/widgets/AlbumScrimImage.java"
16962 line="73"
16963 column="12"/>
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=" public void setTransitionDrawable(TransitionDrawable imageTransition,"
16970 errorLine2=" ~~~~~~~~~~~~~~~~~~">
16971 <location
16972 file="src/org/lineageos/eleven/widgets/AlbumScrimImage.java"
16973 line="109"
16974 column="39"/>
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=" TransitionDrawable paletteTransition) {"
16981 errorLine2=" ~~~~~~~~~~~~~~~~~~">
16982 <location
16983 file="src/org/lineageos/eleven/widgets/AlbumScrimImage.java"
16984 line="110"
16985 column="39"/>
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 void setGradientDrawable(GradientDrawable gradientDrawable) {"
16992 errorLine2=" ~~~~~~~~~~~~~~~~">
16993 <location
16994 file="src/org/lineageos/eleven/widgets/AlbumScrimImage.java"
16995 line="116"
16996 column="37"/>
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 AlbumSongLoader(final Context context, final Long albumId) {"
17003 errorLine2=" ~~~~~~~">
17004 <location
17005 file="src/org/lineageos/eleven/loaders/AlbumSongLoader.java"
17006 line="57"
17007 column="34"/>
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 AlbumSongLoader(final Context context, final Long albumId) {"
17014 errorLine2=" ~~~~">
17015 <location
17016 file="src/org/lineageos/eleven/loaders/AlbumSongLoader.java"
17017 line="57"
17018 column="57"/>
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 List&lt;Song> loadInBackground() {"
17025 errorLine2=" ~~~~~~~~~~">
17026 <location
17027 file="src/org/lineageos/eleven/loaders/AlbumSongLoader.java"
17028 line="63"
17029 column="12"/>
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=" public static Cursor makeAlbumSongCursor(final Context context, final Long albumId) {"
17036 errorLine2=" ~~~~~~">
17037 <location
17038 file="src/org/lineageos/eleven/loaders/AlbumSongLoader.java"
17039 line="109"
17040 column="19"/>
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 static Cursor makeAlbumSongCursor(final Context context, final Long albumId) {"
17047 errorLine2=" ~~~~~~~">
17048 <location
17049 file="src/org/lineageos/eleven/loaders/AlbumSongLoader.java"
17050 line="109"
17051 column="52"/>
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 static Cursor makeAlbumSongCursor(final Context context, final Long albumId) {"
17058 errorLine2=" ~~~~">
17059 <location
17060 file="src/org/lineageos/eleven/loaders/AlbumSongLoader.java"
17061 line="109"
17062 column="75"/>
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 void draw(final Canvas canvas) {"
17069 errorLine2=" ~~~~~~">
17070 <location
17071 file="src/org/lineageos/eleven/widgets/AlphaPatternDrawable.java"
17072 line="60"
17073 column="28"/>
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 void setColorFilter(final ColorFilter cf) {"
17080 errorLine2=" ~~~~~~~~~~~">
17081 <location
17082 file="src/org/lineageos/eleven/widgets/AlphaPatternDrawable.java"
17083 line="75"
17084 column="38"/>
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=" protected void onBoundsChange(final Rect bounds) {"
17091 errorLine2=" ~~~~">
17092 <location
17093 file="src/org/lineageos/eleven/widgets/AlphaPatternDrawable.java"
17094 line="80"
17095 column="41"/>
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=" default void onAnimationStart(Animator animation) {"
17102 errorLine2=" ~~~~~~~~">
17103 <location
17104 file="src/org/lineageos/eleven/utils/AnimatorEndListener.java"
17105 line="23"
17106 column="35"/>
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=" default void onAnimationCancel(Animator animation) {"
17113 errorLine2=" ~~~~~~~~">
17114 <location
17115 file="src/org/lineageos/eleven/utils/AnimatorEndListener.java"
17116 line="28"
17117 column="36"/>
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=" default void onAnimationRepeat(Animator animation) {"
17124 errorLine2=" ~~~~~~~~">
17125 <location
17126 file="src/org/lineageos/eleven/utils/AnimatorEndListener.java"
17127 line="33"
17128 column="36"/>
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=" protected PendingIntent buildPendingIntent(Context context, final String action,"
17135 errorLine2=" ~~~~~~~~~~~~~">
17136 <location
17137 file="src/org/lineageos/eleven/appwidgets/AppWidgetBase.java"
17138 line="28"
17139 column="15"/>
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 PendingIntent buildPendingIntent(Context context, final String action,"
17146 errorLine2=" ~~~~~~~">
17147 <location
17148 file="src/org/lineageos/eleven/appwidgets/AppWidgetBase.java"
17149 line="28"
17150 column="48"/>
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=" protected PendingIntent buildPendingIntent(Context context, final String action,"
17157 errorLine2=" ~~~~~~">
17158 <location
17159 file="src/org/lineageos/eleven/appwidgets/AppWidgetBase.java"
17160 line="28"
17161 column="71"/>
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=" final ComponentName serviceName) {"
17168 errorLine2=" ~~~~~~~~~~~~~">
17169 <location
17170 file="src/org/lineageos/eleven/appwidgets/AppWidgetBase.java"
17171 line="29"
17172 column="54"/>
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=" public static synchronized AppWidgetLarge getInstance() {"
17179 errorLine2=" ~~~~~~~~~~~~~~">
17180 <location
17181 file="src/org/lineageos/eleven/appwidgets/AppWidgetLarge.java"
17182 line="45"
17183 column="32"/>
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=" public void onUpdate(final Context context, final AppWidgetManager appWidgetManager,"
17190 errorLine2=" ~~~~~~~">
17191 <location
17192 file="src/org/lineageos/eleven/appwidgets/AppWidgetLarge.java"
17193 line="53"
17194 column="32"/>
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=" public void onUpdate(final Context context, final AppWidgetManager appWidgetManager,"
17201 errorLine2=" ~~~~~~~~~~~~~~~~">
17202 <location
17203 file="src/org/lineageos/eleven/appwidgets/AppWidgetLarge.java"
17204 line="53"
17205 column="55"/>
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=" final int[] appWidgetIds) {"
17212 errorLine2=" ~~~~~">
17213 <location
17214 file="src/org/lineageos/eleven/appwidgets/AppWidgetLarge.java"
17215 line="54"
17216 column="32"/>
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=" public void notifyChange(final MusicPlaybackService service, final String what) {"
17223 errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
17224 <location
17225 file="src/org/lineageos/eleven/appwidgets/AppWidgetLarge.java"
17226 line="99"
17227 column="36"/>
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 void notifyChange(final MusicPlaybackService service, final String what) {"
17234 errorLine2=" ~~~~~~">
17235 <location
17236 file="src/org/lineageos/eleven/appwidgets/AppWidgetLarge.java"
17237 line="99"
17238 column="72"/>
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 performUpdate(final MusicPlaybackService service, final int[] appWidgetIds) {"
17245 errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
17246 <location
17247 file="src/org/lineageos/eleven/appwidgets/AppWidgetLarge.java"
17248 line="111"
17249 column="37"/>
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 performUpdate(final MusicPlaybackService service, final int[] appWidgetIds) {"
17256 errorLine2=" ~~~~~">
17257 <location
17258 file="src/org/lineageos/eleven/appwidgets/AppWidgetLarge.java"
17259 line="111"
17260 column="73"/>
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=" public static synchronized AppWidgetLargeAlternate getInstance() {"
17267 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
17268 <location
17269 file="src/org/lineageos/eleven/appwidgets/AppWidgetLargeAlternate.java"
17270 line="47"
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 onUpdate(final Context context, final AppWidgetManager appWidgetManager,"
17278 errorLine2=" ~~~~~~~">
17279 <location
17280 file="src/org/lineageos/eleven/appwidgets/AppWidgetLargeAlternate.java"
17281 line="55"
17282 column="32"/>
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 onUpdate(final Context context, final AppWidgetManager appWidgetManager,"
17289 errorLine2=" ~~~~~~~~~~~~~~~~">
17290 <location
17291 file="src/org/lineageos/eleven/appwidgets/AppWidgetLargeAlternate.java"
17292 line="55"
17293 column="55"/>
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=" final int[] appWidgetIds) {"
17300 errorLine2=" ~~~~~">
17301 <location
17302 file="src/org/lineageos/eleven/appwidgets/AppWidgetLargeAlternate.java"
17303 line="56"
17304 column="19"/>
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 notifyChange(final MusicPlaybackService service, final String what) {"
17311 errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
17312 <location
17313 file="src/org/lineageos/eleven/appwidgets/AppWidgetLargeAlternate.java"
17314 line="102"
17315 column="36"/>
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 void notifyChange(final MusicPlaybackService service, final String what) {"
17322 errorLine2=" ~~~~~~">
17323 <location
17324 file="src/org/lineageos/eleven/appwidgets/AppWidgetLargeAlternate.java"
17325 line="102"
17326 column="72"/>
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 performUpdate(final MusicPlaybackService service, final int[] appWidgetIds) {"
17333 errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
17334 <location
17335 file="src/org/lineageos/eleven/appwidgets/AppWidgetLargeAlternate.java"
17336 line="116"
17337 column="37"/>
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 performUpdate(final MusicPlaybackService service, final int[] appWidgetIds) {"
17344 errorLine2=" ~~~~~">
17345 <location
17346 file="src/org/lineageos/eleven/appwidgets/AppWidgetLargeAlternate.java"
17347 line="116"
17348 column="73"/>
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=" public static synchronized AppWidgetSmall getInstance() {"
17355 errorLine2=" ~~~~~~~~~~~~~~">
17356 <location
17357 file="src/org/lineageos/eleven/appwidgets/AppWidgetSmall.java"
17358 line="46"
17359 column="32"/>
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 onUpdate(final Context context, final AppWidgetManager appWidgetManager,"
17366 errorLine2=" ~~~~~~~">
17367 <location
17368 file="src/org/lineageos/eleven/appwidgets/AppWidgetSmall.java"
17369 line="54"
17370 column="32"/>
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 onUpdate(final Context context, final AppWidgetManager appWidgetManager,"
17377 errorLine2=" ~~~~~~~~~~~~~~~~">
17378 <location
17379 file="src/org/lineageos/eleven/appwidgets/AppWidgetSmall.java"
17380 line="54"
17381 column="55"/>
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=" final int[] appWidgetIds) {"
17388 errorLine2=" ~~~~~">
17389 <location
17390 file="src/org/lineageos/eleven/appwidgets/AppWidgetSmall.java"
17391 line="55"
17392 column="19"/>
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 notifyChange(final MusicPlaybackService service, final String what) {"
17399 errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
17400 <location
17401 file="src/org/lineageos/eleven/appwidgets/AppWidgetSmall.java"
17402 line="100"
17403 column="36"/>
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 void notifyChange(final MusicPlaybackService service, final String what) {"
17410 errorLine2=" ~~~~~~">
17411 <location
17412 file="src/org/lineageos/eleven/appwidgets/AppWidgetSmall.java"
17413 line="100"
17414 column="72"/>
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 performUpdate(final MusicPlaybackService service, final int[] appWidgetIds) {"
17421 errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
17422 <location
17423 file="src/org/lineageos/eleven/appwidgets/AppWidgetSmall.java"
17424 line="112"
17425 column="37"/>
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 performUpdate(final MusicPlaybackService service, final int[] appWidgetIds) {"
17432 errorLine2=" ~~~~~">
17433 <location
17434 file="src/org/lineageos/eleven/appwidgets/AppWidgetSmall.java"
17435 line="112"
17436 column="73"/>
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=" public String mBucketLabel;"
17443 errorLine2=" ~~~~~~">
17444 <location
17445 file="src/org/lineageos/eleven/model/Artist.java"
17446 line="54"
17447 column="12"/>
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 Artist(final long artistId, final String artistName,"
17454 errorLine2=" ~~~~~~">
17455 <location
17456 file="src/org/lineageos/eleven/model/Artist.java"
17457 line="64"
17458 column="46"/>
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 ArtistAdapter(final FragmentActivity context, final int layoutId,"
17465 errorLine2=" ~~~~~~~~~~~~~~~~">
17466 <location
17467 file="src/org/lineageos/eleven/adapters/ArtistAdapter.java"
17468 line="78"
17469 column="32"/>
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=" final Consumer&lt;Integer> onItemClickListener) {"
17476 errorLine2=" ~~~~~~~~~~~~~~~~~">
17477 <location
17478 file="src/org/lineageos/eleven/adapters/ArtistAdapter.java"
17479 line="79"
17480 column="32"/>
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 setPopupMenuClickedListener(IListener listener) {"
17487 errorLine2=" ~~~~~~~~~">
17488 <location
17489 file="src/org/lineageos/eleven/adapters/ArtistAdapter.java"
17490 line="140"
17491 column="45"/>
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 Artist getItem(int position) {"
17498 errorLine2=" ~~~~~~">
17499 <location
17500 file="src/org/lineageos/eleven/adapters/ArtistAdapter.java"
17501 line="144"
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 void setData(List&lt;Artist> artists) {"
17509 errorLine2=" ~~~~~~~~~~~~">
17510 <location
17511 file="src/org/lineageos/eleven/adapters/ArtistAdapter.java"
17512 line="148"
17513 column="25"/>
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 ArtistDetailAlbumAdapter(final FragmentActivity activity) {"
17520 errorLine2=" ~~~~~~~~~~~~~~~~">
17521 <location
17522 file="src/org/lineageos/eleven/adapters/ArtistDetailAlbumAdapter.java"
17523 line="72"
17524 column="43"/>
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=" public Album getItem(int position) {"
17531 errorLine2=" ~~~~~">
17532 <location
17533 file="src/org/lineageos/eleven/adapters/ArtistDetailAlbumAdapter.java"
17534 line="131"
17535 column="12"/>
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/ArtistDetailAlbumAdapter.java"
17545 line="136"
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 ViewHolder(View root) {"
17553 errorLine2=" ~~~~">
17554 <location
17555 file="src/org/lineageos/eleven/adapters/ArtistDetailAlbumAdapter.java"
17556 line="145"
17557 column="27"/>
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;Album> albums) {"
17564 errorLine2=" ~~~~~~~~~~~">
17565 <location
17566 file="src/org/lineageos/eleven/adapters/ArtistDetailAlbumAdapter.java"
17567 line="153"
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=" protected String getTitle() {"
17575 errorLine2=" ~~~~~~">
17576 <location
17577 file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
17578 line="140"
17579 column="15"/>
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=" protected PopupMenuHelper createActionMenuHelper() {"
17586 errorLine2=" ~~~~~~~~~~~~~~~">
17587 <location
17588 file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
17589 line="171"
17590 column="15"/>
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 PagerAdapter.MusicFragments getMusicFragmentParent() {"
17597 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~">
17598 <location
17599 file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
17600 line="290"
17601 column="12"/>
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 ArtistDetailSongAdapter(FragmentActivity activity) {"
17608 errorLine2=" ~~~~~~~~~~~~~~~~">
17609 <location
17610 file="src/org/lineageos/eleven/adapters/ArtistDetailSongAdapter.java"
17611 line="31"
17612 column="36"/>
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=" protected Config.IdType getSourceType() {"
17619 errorLine2=" ~~~~~~~~~~~~~">
17620 <location
17621 file="src/org/lineageos/eleven/adapters/ArtistDetailSongAdapter.java"
17622 line="41"
17623 column="15"/>
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 Holder newHolder(View root, ImageFetcher fetcher) {"
17630 errorLine2=" ~~~~~~">
17631 <location
17632 file="src/org/lineageos/eleven/adapters/ArtistDetailSongAdapter.java"
17633 line="46"
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 Holder newHolder(View root, ImageFetcher fetcher) {"
17641 errorLine2=" ~~~~">
17642 <location
17643 file="src/org/lineageos/eleven/adapters/ArtistDetailSongAdapter.java"
17644 line="46"
17645 column="32"/>
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=" protected Holder newHolder(View root, ImageFetcher fetcher) {"
17652 errorLine2=" ~~~~~~~~~~~~">
17653 <location
17654 file="src/org/lineageos/eleven/adapters/ArtistDetailSongAdapter.java"
17655 line="46"
17656 column="43"/>
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 void onCreate(final Bundle savedInstanceState) {"
17663 errorLine2=" ~~~~~~">
17664 <location
17665 file="src/org/lineageos/eleven/ui/fragments/ArtistFragment.java"
17666 line="102"
17667 column="32"/>
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=" public View onCreateView(final LayoutInflater inflater, final ViewGroup container,"
17674 errorLine2=" ~~~~">
17675 <location
17676 file="src/org/lineageos/eleven/ui/fragments/ArtistFragment.java"
17677 line="120"
17678 column="12"/>
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=" public View onCreateView(final LayoutInflater inflater, final ViewGroup container,"
17685 errorLine2=" ~~~~~~~~~~~~~~">
17686 <location
17687 file="src/org/lineageos/eleven/ui/fragments/ArtistFragment.java"
17688 line="120"
17689 column="36"/>
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=" public View onCreateView(final LayoutInflater inflater, final ViewGroup container,"
17696 errorLine2=" ~~~~~~~~~">
17697 <location
17698 file="src/org/lineageos/eleven/ui/fragments/ArtistFragment.java"
17699 line="120"
17700 column="67"/>
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=" final Bundle savedInstanceState) {"
17707 errorLine2=" ~~~~~~">
17708 <location
17709 file="src/org/lineageos/eleven/ui/fragments/ArtistFragment.java"
17710 line="121"
17711 column="36"/>
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 Loader&lt;SectionListContainer&lt;Artist>> onCreateLoader(final int id, final Bundle args) {"
17718 errorLine2=" ~~~~~~">
17719 <location
17720 file="src/org/lineageos/eleven/ui/fragments/ArtistFragment.java"
17721 line="167"
17722 column="84"/>
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=" final SectionListContainer&lt;Artist> data) {"
17729 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
17730 <location
17731 file="src/org/lineageos/eleven/ui/fragments/ArtistFragment.java"
17732 line="176"
17733 column="38"/>
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 ArtistLoader(final Context context) {"
17740 errorLine2=" ~~~~~~~">
17741 <location
17742 file="src/org/lineageos/eleven/loaders/ArtistLoader.java"
17743 line="55"
17744 column="31"/>
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 List&lt;Artist> loadInBackground() {"
17751 errorLine2=" ~~~~~~~~~~~~">
17752 <location
17753 file="src/org/lineageos/eleven/loaders/ArtistLoader.java"
17754 line="60"
17755 column="12"/>
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=" public static Cursor makeArtistCursor(final Context context) {"
17762 errorLine2=" ~~~~~~">
17763 <location
17764 file="src/org/lineageos/eleven/loaders/ArtistLoader.java"
17765 line="119"
17766 column="19"/>
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 static Cursor makeArtistCursor(final Context context) {"
17773 errorLine2=" ~~~~~~~">
17774 <location
17775 file="src/org/lineageos/eleven/loaders/ArtistLoader.java"
17776 line="119"
17777 column="49"/>
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=" public ArtistPopupMenuHelper(Activity activity, FragmentManager fragmentManager) {"
17784 errorLine2=" ~~~~~~~~">
17785 <location
17786 file="src/org/lineageos/eleven/utils/ArtistPopupMenuHelper.java"
17787 line="33"
17788 column="34"/>
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 ArtistPopupMenuHelper(Activity activity, FragmentManager fragmentManager) {"
17795 errorLine2=" ~~~~~~~~~~~~~~~">
17796 <location
17797 file="src/org/lineageos/eleven/utils/ArtistPopupMenuHelper.java"
17798 line="33"
17799 column="53"/>
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 abstract Artist getArtist(int position);"
17806 errorLine2=" ~~~~~~">
17807 <location
17808 file="src/org/lineageos/eleven/utils/ArtistPopupMenuHelper.java"
17809 line="38"
17810 column="21"/>
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 PopupMenuType onPreparePopupMenu(int position) {"
17817 errorLine2=" ~~~~~~~~~~~~~">
17818 <location
17819 file="src/org/lineageos/eleven/utils/ArtistPopupMenuHelper.java"
17820 line="41"
17821 column="12"/>
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=" protected Config.IdType getSourceType() {"
17828 errorLine2=" ~~~~~~~~~~~~~">
17829 <location
17830 file="src/org/lineageos/eleven/utils/ArtistPopupMenuHelper.java"
17831 line="52"
17832 column="15"/>
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=" protected long[] getIdList() {"
17839 errorLine2=" ~~~~~~">
17840 <location
17841 file="src/org/lineageos/eleven/utils/ArtistPopupMenuHelper.java"
17842 line="57"
17843 column="15"/>
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=" protected String getArtistName() {"
17850 errorLine2=" ~~~~~~">
17851 <location
17852 file="src/org/lineageos/eleven/utils/ArtistPopupMenuHelper.java"
17853 line="69"
17854 column="15"/>
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 boolean onMenuItemClick(MenuItem item) {"
17861 errorLine2=" ~~~~~~~~">
17862 <location
17863 file="src/org/lineageos/eleven/utils/ArtistPopupMenuHelper.java"
17864 line="74"
17865 column="36"/>
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 AudioButton(final Context context, final AttributeSet attrs) {"
17872 errorLine2=" ~~~~~~~">
17873 <location
17874 file="src/org/lineageos/eleven/widgets/AudioButton.java"
17875 line="36"
17876 column="30"/>
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=" public AudioButton(final Context context, final AttributeSet attrs) {"
17883 errorLine2=" ~~~~~~~~~~~~">
17884 <location
17885 file="src/org/lineageos/eleven/widgets/AudioButton.java"
17886 line="36"
17887 column="53"/>
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=" public boolean onLongClick(final View view) {"
17894 errorLine2=" ~~~~">
17895 <location
17896 file="src/org/lineageos/eleven/widgets/AudioButton.java"
17897 line="47"
17898 column="38"/>
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=" public View onCreateView(@NonNull final LayoutInflater inflater, final ViewGroup container,"
17905 errorLine2=" ~~~~">
17906 <location
17907 file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
17908 line="121"
17909 column="12"/>
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 View onCreateView(@NonNull final LayoutInflater inflater, final ViewGroup container,"
17916 errorLine2=" ~~~~~~~~~">
17917 <location
17918 file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
17919 line="121"
17920 column="76"/>
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=" final Bundle savedInstanceState) {"
17927 errorLine2=" ~~~~~~">
17928 <location
17929 file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
17930 line="122"
17931 column="36"/>
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 boolean onOptionsItemSelected(MenuItem item) {"
17938 errorLine2=" ~~~~~~~~">
17939 <location
17940 file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
17941 line="192"
17942 column="42"/>
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 void onServiceConnected(final ComponentName name, final IBinder service) {"
17949 errorLine2=" ~~~~~~~~~~~~~">
17950 <location
17951 file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
17952 line="262"
17953 column="42"/>
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 void onServiceConnected(final ComponentName name, final IBinder service) {"
17960 errorLine2=" ~~~~~~~">
17961 <location
17962 file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
17963 line="262"
17964 column="68"/>
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 void onServiceDisconnected(ComponentName name) {"
17971 errorLine2=" ~~~~~~~~~~~~~">
17972 <location
17973 file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
17974 line="272"
17975 column="39"/>
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=" public void onLyrics(String lyrics) {"
17982 errorLine2=" ~~~~~~">
17983 <location
17984 file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
17985 line="489"
17986 column="26"/>
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 void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {"
17993 errorLine2=" ~~~~~~~">
17994 <location
17995 file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
17996 line="93"
17997 column="35"/>
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 onStartTrackingTouch(SeekBar seekBar) {"
18004 errorLine2=" ~~~~~~~">
18005 <location
18006 file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
18007 line="100"
18008 column="38"/>
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 onStopTrackingTouch(SeekBar seekBar) {"
18015 errorLine2=" ~~~~~~~">
18016 <location
18017 file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
18018 line="109"
18019 column="37"/>
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 onCreate(Bundle savedInstanceState) {"
18026 errorLine2=" ~~~~~~">
18027 <location
18028 file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
18029 line="187"
18030 column="26"/>
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 Object onRetainCustomNonConfigurationInstance() {"
18037 errorLine2=" ~~~~~~">
18038 <location
18039 file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
18040 line="258"
18041 column="12"/>
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 onCompletion(MediaPlayer mp) {"
18048 errorLine2=" ~~~~~~~~~~~">
18049 <location
18050 file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
18051 line="479"
18052 column="30"/>
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 boolean onError(MediaPlayer mp, int what, int extra) {"
18059 errorLine2=" ~~~~~~~~~~~">
18060 <location
18061 file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
18062 line="488"
18063 column="28"/>
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 onPrepared(MediaPlayer mp) {"
18070 errorLine2=" ~~~~~~~~~~~">
18071 <location
18072 file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
18073 line="521"
18074 column="28"/>
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 boolean onTouch(View v, MotionEvent event) {"
18081 errorLine2=" ~~~~">
18082 <location
18083 file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
18084 line="527"
18085 column="28"/>
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 boolean onTouch(View v, MotionEvent event) {"
18092 errorLine2=" ~~~~~~~~~~~">
18093 <location
18094 file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
18095 line="527"
18096 column="36"/>
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 onClick(View v) {"
18103 errorLine2=" ~~~~">
18104 <location
18105 file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
18106 line="546"
18107 column="25"/>
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 onKeyDown(int keyCode, KeyEvent keyEvent) {"
18114 errorLine2=" ~~~~~~~~">
18115 <location
18116 file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
18117 line="664"
18118 column="43"/>
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=" protected void init(final Bundle savedInstanceState) {"
18125 errorLine2=" ~~~~~~">
18126 <location
18127 file="src/org/lineageos/eleven/ui/activities/BaseActivity.java"
18128 line="117"
18129 column="31"/>
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 void onServiceConnected(final ComponentName name, final IBinder service) {"
18136 errorLine2=" ~~~~~~~~~~~~~">
18137 <location
18138 file="src/org/lineageos/eleven/ui/activities/BaseActivity.java"
18139 line="151"
18140 column="42"/>
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 void onServiceConnected(final ComponentName name, final IBinder service) {"
18147 errorLine2=" ~~~~~~~">
18148 <location
18149 file="src/org/lineageos/eleven/ui/activities/BaseActivity.java"
18150 line="151"
18151 column="68"/>
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 onServiceDisconnected(final ComponentName name) {"
18158 errorLine2=" ~~~~~~~~~~~~~">
18159 <location
18160 file="src/org/lineageos/eleven/ui/activities/BaseActivity.java"
18161 line="161"
18162 column="45"/>
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 onCreateOptionsMenu(final Menu menu) {"
18169 errorLine2=" ~~~~">
18170 <location
18171 file="src/org/lineageos/eleven/ui/activities/BaseActivity.java"
18172 line="165"
18173 column="46"/>
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=" public boolean onOptionsItemSelected(final MenuItem item) {"
18180 errorLine2=" ~~~~~~~~">
18181 <location
18182 file="src/org/lineageos/eleven/ui/activities/BaseActivity.java"
18183 line="173"
18184 column="48"/>
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 setupActionBar(String title) {"
18191 errorLine2=" ~~~~~~">
18192 <location
18193 file="src/org/lineageos/eleven/ui/activities/BaseActivity.java"
18194 line="243"
18195 column="32"/>
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 setActionBarTitle(String title) {"
18202 errorLine2=" ~~~~~~">
18203 <location
18204 file="src/org/lineageos/eleven/ui/activities/BaseActivity.java"
18205 line="254"
18206 column="35"/>
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 setMusicStateListenerListener(final MusicStateListener status) {"
18213 errorLine2=" ~~~~~~~~~~~~~~~~~~">
18214 <location
18215 file="src/org/lineageos/eleven/ui/activities/BaseActivity.java"
18216 line="411"
18217 column="53"/>
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 void removeMusicStateListenerListener(final MusicStateListener status) {"
18224 errorLine2=" ~~~~~~~~~~~~~~~~~~">
18225 <location
18226 file="src/org/lineageos/eleven/ui/activities/BaseActivity.java"
18227 line="424"
18228 column="56"/>
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=" protected ViewGroup mRootView;"
18235 errorLine2=" ~~~~~~~~~">
18236 <location
18237 file="src/org/lineageos/eleven/ui/fragments/BaseFragment.java"
18238 line="35"
18239 column="15"/>
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=" protected abstract String getTitle();"
18246 errorLine2=" ~~~~~~">
18247 <location
18248 file="src/org/lineageos/eleven/ui/fragments/BaseFragment.java"
18249 line="37"
18250 column="24"/>
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 onCreate(Bundle savedInstanceState) {"
18257 errorLine2=" ~~~~~~">
18258 <location
18259 file="src/org/lineageos/eleven/ui/fragments/BaseFragment.java"
18260 line="46"
18261 column="26"/>
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=" protected HomeActivity getContainingActivity() {"
18268 errorLine2=" ~~~~~~~~~~~~">
18269 <location
18270 file="src/org/lineageos/eleven/ui/fragments/BaseFragment.java"
18271 line="60"
18272 column="15"/>
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 final View onCreateView(LayoutInflater inflater, ViewGroup container,"
18279 errorLine2=" ~~~~">
18280 <location
18281 file="src/org/lineageos/eleven/ui/fragments/BaseFragment.java"
18282 line="65"
18283 column="18"/>
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=" public final View onCreateView(LayoutInflater inflater, ViewGroup container,"
18290 errorLine2=" ~~~~~~~~~~~~~~">
18291 <location
18292 file="src/org/lineageos/eleven/ui/fragments/BaseFragment.java"
18293 line="65"
18294 column="36"/>
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=" public final View onCreateView(LayoutInflater inflater, ViewGroup container,"
18301 errorLine2=" ~~~~~~~~~">
18302 <location
18303 file="src/org/lineageos/eleven/ui/fragments/BaseFragment.java"
18304 line="65"
18305 column="61"/>
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=" Bundle savedInstanceState) {"
18312 errorLine2=" ~~~~~~">
18313 <location
18314 file="src/org/lineageos/eleven/ui/fragments/BaseFragment.java"
18315 line="66"
18316 column="36"/>
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 AlertDialog mPlaylistDialog;"
18323 errorLine2=" ~~~~~~~~~~~">
18324 <location
18325 file="src/org/lineageos/eleven/menu/BasePlaylistDialog.java"
18326 line="47"
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=" protected EditText mPlaylist;"
18334 errorLine2=" ~~~~~~~~">
18335 <location
18336 file="src/org/lineageos/eleven/menu/BasePlaylistDialog.java"
18337 line="50"
18338 column="15"/>
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=" protected Button mSaveButton;"
18345 errorLine2=" ~~~~~~">
18346 <location
18347 file="src/org/lineageos/eleven/menu/BasePlaylistDialog.java"
18348 line="53"
18349 column="15"/>
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=" protected String mPrompt;"
18356 errorLine2=" ~~~~~~">
18357 <location
18358 file="src/org/lineageos/eleven/menu/BasePlaylistDialog.java"
18359 line="56"
18360 column="15"/>
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=" protected String mDefaultName;"
18367 errorLine2=" ~~~~~~">
18368 <location
18369 file="src/org/lineageos/eleven/menu/BasePlaylistDialog.java"
18370 line="59"
18371 column="15"/>
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=" public void onTextChanged(CharSequence s, int start, int before, int count) {"
18378 errorLine2=" ~~~~~~~~~~~~">
18379 <location
18380 file="src/org/lineageos/eleven/menu/BasePlaylistDialog.java"
18381 line="103"
18382 column="31"/>
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=" public void beforeTextChanged(final CharSequence s, final int start, final int count,"
18389 errorLine2=" ~~~~~~~~~~~~">
18390 <location
18391 file="src/org/lineageos/eleven/menu/BasePlaylistDialog.java"
18392 line="108"
18393 column="41"/>
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=" public abstract void initialize(Bundle savedInstanceState);"
18400 errorLine2=" ~~~~~~">
18401 <location
18402 file="src/org/lineageos/eleven/menu/BasePlaylistDialog.java"
18403 line="116"
18404 column="37"/>
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 ViewGroup mRootView;"
18411 errorLine2=" ~~~~~~~~~">
18412 <location
18413 file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
18414 line="69"
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 SongListAdapter mAdapter;"
18422 errorLine2=" ~~~~~~~~~~~~~~~">
18423 <location
18424 file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
18425 line="74"
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=" protected RecyclerView mListView;"
18433 errorLine2=" ~~~~~~~~~~~~">
18434 <location
18435 file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
18436 line="79"
18437 column="15"/>
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=" protected PopupMenuHelper mPopupMenuHelper;"
18444 errorLine2=" ~~~~~~~~~~~~~~~">
18445 <location
18446 file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
18447 line="84"
18448 column="15"/>
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=" protected LoadingEmptyContainer mLoadingEmptyContainer;"
18455 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~">
18456 <location
18457 file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
18458 line="89"
18459 column="15"/>
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=" public void onCreate(final Bundle savedInstanceState) {"
18466 errorLine2=" ~~~~~~">
18467 <location
18468 file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
18469 line="98"
18470 column="32"/>
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 Config.IdType getFragmentSourceType() {"
18477 errorLine2=" ~~~~~~~~~~~~~">
18478 <location
18479 file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
18480 line="133"
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 void updateMenuIds(TreeSet&lt;Integer> set) {"
18488 errorLine2=" ~~~~~~~~~~~~~~~~">
18489 <location
18490 file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
18491 line="137"
18492 column="34"/>
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=" public View onCreateView(final LayoutInflater inflater, final ViewGroup container,"
18499 errorLine2=" ~~~~">
18500 <location
18501 file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
18502 line="142"
18503 column="12"/>
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=" public View onCreateView(final LayoutInflater inflater, final ViewGroup container,"
18510 errorLine2=" ~~~~~~~~~~~~~~">
18511 <location
18512 file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
18513 line="142"
18514 column="36"/>
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 View onCreateView(final LayoutInflater inflater, final ViewGroup container,"
18521 errorLine2=" ~~~~~~~~~">
18522 <location
18523 file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
18524 line="142"
18525 column="67"/>
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=" final Bundle savedInstanceState) {"
18532 errorLine2=" ~~~~~~">
18533 <location
18534 file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
18535 line="143"
18536 column="36"/>
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=" public void setupNoResultsContainer(final NoResultsContainer empty) {"
18543 errorLine2=" ~~~~~~~~~~~~~~~~~~">
18544 <location
18545 file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
18546 line="187"
18547 column="47"/>
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=" final SectionListContainer&lt;Song> data) {"
18554 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~">
18555 <location
18556 file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
18557 line="204"
18558 column="38"/>
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=" protected long[] getSongIdsFromAdapter() {"
18565 errorLine2=" ~~~~~~">
18566 <location
18567 file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
18568 line="223"
18569 column="15"/>
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=" protected SongListAdapter createAdapter() {"
18576 errorLine2=" ~~~~~~~~~~~~~~~">
18577 <location
18578 file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
18579 line="257"
18580 column="15"/>
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=" public LoaderManager getFragmentLoaderManager() {"
18587 errorLine2=" ~~~~~~~~~~~~~">
18588 <location
18589 file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
18590 line="272"
18591 column="12"/>
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 BitmapWithColors(Bitmap bitmap, int bitmapKey) {"
18598 errorLine2=" ~~~~~~">
18599 <location
18600 file="src/org/lineageos/eleven/utils/colors/BitmapWithColors.java"
18601 line="80"
18602 column="29"/>
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=" public BitmapWithColors(Bitmap bitmap, int bitmapKey, int vibrantColor, int vibrantDarkColor) {"
18609 errorLine2=" ~~~~~~">
18610 <location
18611 file="src/org/lineageos/eleven/utils/colors/BitmapWithColors.java"
18612 line="91"
18613 column="29"/>
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=" public Bitmap getBitmap() {"
18620 errorLine2=" ~~~~~~">
18621 <location
18622 file="src/org/lineageos/eleven/utils/colors/BitmapWithColors.java"
18623 line="97"
18624 column="12"/>
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 Drawable mFromDrawable;"
18631 errorLine2=" ~~~~~~~~">
18632 <location
18633 file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
18634 line="49"
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 BitmapWorkerTask(final String key, final ImageView imageView, final ImageType imageType,"
18642 errorLine2=" ~~~~~~">
18643 <location
18644 file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
18645 line="72"
18646 column="35"/>
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 BitmapWorkerTask(final String key, final ImageView imageView, final ImageType imageType,"
18653 errorLine2=" ~~~~~~~~~">
18654 <location
18655 file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
18656 line="72"
18657 column="53"/>
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 BitmapWorkerTask(final String key, final ImageView imageView, final ImageType imageType,"
18664 errorLine2=" ~~~~~~~~~">
18665 <location
18666 file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
18667 line="72"
18668 column="80"/>
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=" final Drawable fromDrawable, final Context context) {"
18675 errorLine2=" ~~~~~~~~">
18676 <location
18677 file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
18678 line="73"
18679 column="35"/>
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=" final Drawable fromDrawable, final Context context) {"
18686 errorLine2=" ~~~~~~~">
18687 <location
18688 file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
18689 line="73"
18690 column="64"/>
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,"
18697 errorLine2=" ~~~~~~">
18698 <location
18699 file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
18700 line="86"
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,"
18708 errorLine2=" ~~~~~~~~~">
18709 <location
18710 file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
18711 line="86"
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=" final ImageType imageType, final Drawable fromDrawable,"
18719 errorLine2=" ~~~~~~~~~">
18720 <location
18721 file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
18722 line="87"
18723 column="35"/>
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 ImageType imageType, final Drawable fromDrawable,"
18730 errorLine2=" ~~~~~~~~">
18731 <location
18732 file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
18733 line="87"
18734 column="62"/>
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 Context context, final boolean scaleImgToView) {"
18741 errorLine2=" ~~~~~~~">
18742 <location
18743 file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
18744 line="88"
18745 column="35"/>
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=" protected ImageView getAttachedImageView() {"
18752 errorLine2=" ~~~~~~~~~">
18753 <location
18754 file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
18755 line="109"
18756 column="15"/>
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=" protected Bitmap getBitmapInBackground(final String... params) {"
18763 errorLine2=" ~~~~~~">
18764 <location
18765 file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
18766 line="128"
18767 column="15"/>
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=" protected Bitmap getBitmapInBackground(final String... params) {"
18774 errorLine2=" ~~~~~~~~~">
18775 <location
18776 file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
18777 line="128"
18778 column="50"/>
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=" protected TransitionDrawable createImageTransitionDrawable(final Bitmap bitmap) {"
18785 errorLine2=" ~~~~~~~~~~~~~~~~~~">
18786 <location
18787 file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
18788 line="139"
18789 column="15"/>
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=" protected TransitionDrawable createImageTransitionDrawable(final Bitmap bitmap) {"
18796 errorLine2=" ~~~~~~">
18797 <location
18798 file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
18799 line="139"
18800 column="70"/>
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 TransitionDrawable createImageTransitionDrawable(final Bitmap bitmap,"
18807 errorLine2=" ~~~~~~~~~~~~~~~~~~">
18808 <location
18809 file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
18810 line="151"
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 TransitionDrawable createImageTransitionDrawable(final Bitmap bitmap,"
18818 errorLine2=" ~~~~~~">
18819 <location
18820 file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
18821 line="151"
18822 column="70"/>
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=" public TransitionDrawable mImageViewBitmapDrawable;"
18829 errorLine2=" ~~~~~~~~~~~~~~~~~~">
18830 <location
18831 file="src/org/lineageos/eleven/cache/BlurBitmapWorkerTask.java"
18832 line="41"
18833 column="16"/>
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=" public BlurBitmapWorkerTask(final String key, final AlbumScrimImage albumScrimImage,"
18840 errorLine2=" ~~~~~~">
18841 <location
18842 file="src/org/lineageos/eleven/cache/BlurBitmapWorkerTask.java"
18843 line="58"
18844 column="39"/>
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=" public BlurBitmapWorkerTask(final String key, final AlbumScrimImage albumScrimImage,"
18851 errorLine2=" ~~~~~~~~~~~~~~~">
18852 <location
18853 file="src/org/lineageos/eleven/cache/BlurBitmapWorkerTask.java"
18854 line="58"
18855 column="57"/>
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=" final ImageType imageType, final Drawable fromDrawable,"
18862 errorLine2=" ~~~~~~~~~">
18863 <location
18864 file="src/org/lineageos/eleven/cache/BlurBitmapWorkerTask.java"
18865 line="59"
18866 column="39"/>
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=" final ImageType imageType, final Drawable fromDrawable,"
18873 errorLine2=" ~~~~~~~~">
18874 <location
18875 file="src/org/lineageos/eleven/cache/BlurBitmapWorkerTask.java"
18876 line="59"
18877 column="66"/>
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=" final Context context) {"
18884 errorLine2=" ~~~~~~~">
18885 <location
18886 file="src/org/lineageos/eleven/cache/BlurBitmapWorkerTask.java"
18887 line="60"
18888 column="39"/>
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=" protected ResultContainer doInBackground(final String... params) {"
18895 errorLine2=" ~~~~~~~~~~~~~~~">
18896 <location
18897 file="src/org/lineageos/eleven/cache/BlurBitmapWorkerTask.java"
18898 line="72"
18899 column="15"/>
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=" protected ResultContainer doInBackground(final String... params) {"
18906 errorLine2=" ~~~~~~~~~">
18907 <location
18908 file="src/org/lineageos/eleven/cache/BlurBitmapWorkerTask.java"
18909 line="72"
18910 column="52"/>
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=" protected void onPostExecute(ResultContainer resultContainer) {"
18917 errorLine2=" ~~~~~~~~~~~~~~~">
18918 <location
18919 file="src/org/lineageos/eleven/cache/BlurBitmapWorkerTask.java"
18920 line="94"
18921 column="34"/>
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=" protected final ImageView getAttachedImageView() {"
18928 errorLine2=" ~~~~~~~~~">
18929 <location
18930 file="src/org/lineageos/eleven/cache/BlurBitmapWorkerTask.java"
18931 line="115"
18932 column="21"/>
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=" void onColorExtracted(final BitmapWithColors bitmapWithColors);"
18939 errorLine2=" ~~~~~~~~~~~~~~~~">
18940 <location
18941 file="src/org/lineageos/eleven/utils/colors/ColorExtractor.java"
18942 line="26"
18943 column="37"/>
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=" public static void extractColors(final ImageFetcher imageFetcher,"
18950 errorLine2=" ~~~~~~~~~~~~">
18951 <location
18952 file="src/org/lineageos/eleven/utils/colors/ColorExtractor.java"
18953 line="29"
18954 column="44"/>
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=" final ColorExtractor.Callback callback) {"
18961 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
18962 <location
18963 file="src/org/lineageos/eleven/utils/colors/ColorExtractor.java"
18964 line="30"
18965 column="44"/>
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=" public ColorPanelView(final Context context) {"
18972 errorLine2=" ~~~~~~~">
18973 <location
18974 file="src/org/lineageos/eleven/widgets/ColorPanelView.java"
18975 line="56"
18976 column="33"/>
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=" public ColorPanelView(final Context context, final AttributeSet attrs) {"
18983 errorLine2=" ~~~~~~~">
18984 <location
18985 file="src/org/lineageos/eleven/widgets/ColorPanelView.java"
18986 line="60"
18987 column="33"/>
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=" public ColorPanelView(final Context context, final AttributeSet attrs) {"
18994 errorLine2=" ~~~~~~~~~~~~">
18995 <location
18996 file="src/org/lineageos/eleven/widgets/ColorPanelView.java"
18997 line="60"
18998 column="56"/>
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 ColorPanelView(final Context context, final AttributeSet attrs, final int defStyle) {"
19005 errorLine2=" ~~~~~~~">
19006 <location
19007 file="src/org/lineageos/eleven/widgets/ColorPanelView.java"
19008 line="64"
19009 column="33"/>
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=" public ColorPanelView(final Context context, final AttributeSet attrs, final int defStyle) {"
19016 errorLine2=" ~~~~~~~~~~~~">
19017 <location
19018 file="src/org/lineageos/eleven/widgets/ColorPanelView.java"
19019 line="64"
19020 column="56"/>
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=" protected void onDraw(final Canvas canvas) {"
19027 errorLine2=" ~~~~~~">
19028 <location
19029 file="src/org/lineageos/eleven/widgets/ColorPanelView.java"
19030 line="76"
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 static SmartPlaylistType getTypeById(long id) {"
19038 errorLine2=" ~~~~~~~~~~~~~~~~~">
19039 <location
19040 file="src/org/lineageos/eleven/Config.java"
19041 line="84"
19042 column="23"/>
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 static IdType getTypeById(int id) {"
19049 errorLine2=" ~~~~~~">
19050 <location
19051 file="src/org/lineageos/eleven/Config.java"
19052 line="111"
19053 column="23"/>
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 static void show(Fragment target, int requestCode, int titleId, int okId) {"
19060 errorLine2=" ~~~~~~~~">
19061 <location
19062 file="src/org/lineageos/eleven/menu/ConfirmDialog.java"
19063 line="47"
19064 column="29"/>
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 Dialog onCreateDialog(final Bundle savedInstanceState) {"
19071 errorLine2=" ~~~~~~">
19072 <location
19073 file="src/org/lineageos/eleven/menu/ConfirmDialog.java"
19074 line="59"
19075 column="40"/>
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=" public static CreateNewPlaylist getInstance(final long[] list) {"
19082 errorLine2=" ~~~~~~~~~~~~~~~~~">
19083 <location
19084 file="src/org/lineageos/eleven/menu/CreateNewPlaylist.java"
19085 line="41"
19086 column="19"/>
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 CreateNewPlaylist getInstance(final long[] list) {"
19093 errorLine2=" ~~~~~~">
19094 <location
19095 file="src/org/lineageos/eleven/menu/CreateNewPlaylist.java"
19096 line="41"
19097 column="55"/>
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 void initialize(final Bundle savedInstanceState) {"
19104 errorLine2=" ~~~~~~">
19105 <location
19106 file="src/org/lineageos/eleven/menu/CreateNewPlaylist.java"
19107 line="55"
19108 column="34"/>
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 void afterTextChanged(Editable editable) {"
19115 errorLine2=" ~~~~~~~~">
19116 <location
19117 file="src/org/lineageos/eleven/menu/CreateNewPlaylist.java"
19118 line="94"
19119 column="34"/>
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=" void onDelete(long[] id);"
19126 errorLine2=" ~~~~~~">
19127 <location
19128 file="src/org/lineageos/eleven/menu/DeleteDialog.java"
19129 line="43"
19130 column="23"/>
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 DeleteDialog newInstance(final String title, final long[] items,"
19137 errorLine2=" ~~~~~~~~~~~~">
19138 <location
19139 file="src/org/lineageos/eleven/menu/DeleteDialog.java"
19140 line="68"
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 DeleteDialog newInstance(final String title, final long[] items,"
19148 errorLine2=" ~~~~~~">
19149 <location
19150 file="src/org/lineageos/eleven/menu/DeleteDialog.java"
19151 line="68"
19152 column="50"/>
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 static DeleteDialog newInstance(final String title, final long[] items,"
19159 errorLine2=" ~~~~~~">
19160 <location
19161 file="src/org/lineageos/eleven/menu/DeleteDialog.java"
19162 line="68"
19163 column="70"/>
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=" final String key) {"
19170 errorLine2=" ~~~~~~">
19171 <location
19172 file="src/org/lineageos/eleven/menu/DeleteDialog.java"
19173 line="69"
19174 column="50"/>
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=" public Dialog onCreateDialog(final Bundle savedInstanceState) {"
19181 errorLine2=" ~~~~~~">
19182 <location
19183 file="src/org/lineageos/eleven/menu/DeleteDialog.java"
19184 line="81"
19185 column="40"/>
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=" protected PopupMenuHelper mActionMenuHelper;"
19192 errorLine2=" ~~~~~~~~~~~~~~~">
19193 <location
19194 file="src/org/lineageos/eleven/ui/fragments/DetailFragment.java"
19195 line="29"
19196 column="15"/>
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=" protected abstract PopupMenuHelper createActionMenuHelper();"
19203 errorLine2=" ~~~~~~~~~~~~~~~">
19204 <location
19205 file="src/org/lineageos/eleven/ui/fragments/DetailFragment.java"
19206 line="35"
19207 column="24"/>
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 void onCreateOptionsMenu(@NonNull final Menu menu, final MenuInflater inflater) {"
19214 errorLine2=" ~~~~~~~~~~~~">
19215 <location
19216 file="src/org/lineageos/eleven/ui/fragments/DetailFragment.java"
19217 line="54"
19218 column="69"/>
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=" public boolean onOptionsItemSelected(final MenuItem item) {"
19225 errorLine2=" ~~~~~~~~">
19226 <location
19227 file="src/org/lineageos/eleven/ui/fragments/DetailFragment.java"
19228 line="68"
19229 column="48"/>
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 DetailSongAdapter(final FragmentActivity context) {"
19236 errorLine2=" ~~~~~~~~~~~~~~~~">
19237 <location
19238 file="src/org/lineageos/eleven/adapters/DetailSongAdapter.java"
19239 line="80"
19240 column="36"/>
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=" public Song getItem(int pos) {"
19247 errorLine2=" ~~~~">
19248 <location
19249 file="src/org/lineageos/eleven/adapters/DetailSongAdapter.java"
19250 line="90"
19251 column="12"/>
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=" public void setCurrentlyPlayingTrack(MusicPlaybackTrack currentTrack) {"
19258 errorLine2=" ~~~~~~~~~~~~~~~~~~">
19259 <location
19260 file="src/org/lineageos/eleven/adapters/DetailSongAdapter.java"
19261 line="107"
19262 column="42"/>
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=" protected abstract Config.IdType getSourceType();"
19269 errorLine2=" ~~~~~~~~~~~~~">
19270 <location
19271 file="src/org/lineageos/eleven/adapters/DetailSongAdapter.java"
19272 line="157"
19273 column="24"/>
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 void setData(List&lt;Song> songs) {"
19280 errorLine2=" ~~~~~~~~~~">
19281 <location
19282 file="src/org/lineageos/eleven/adapters/DetailSongAdapter.java"
19283 line="177"
19284 column="25"/>
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 void setPopupMenuClickedListener(IListener listener) {"
19291 errorLine2=" ~~~~~~~~~">
19292 <location
19293 file="src/org/lineageos/eleven/adapters/DetailSongAdapter.java"
19294 line="209"
19295 column="45"/>
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=" protected abstract Holder newHolder(View root, ImageFetcher fetcher);"
19302 errorLine2=" ~~~~~~">
19303 <location
19304 file="src/org/lineageos/eleven/adapters/DetailSongAdapter.java"
19305 line="213"
19306 column="24"/>
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=" protected abstract Holder newHolder(View root, ImageFetcher fetcher);"
19313 errorLine2=" ~~~~">
19314 <location
19315 file="src/org/lineageos/eleven/adapters/DetailSongAdapter.java"
19316 line="213"
19317 column="41"/>
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 Holder newHolder(View root, ImageFetcher fetcher);"
19324 errorLine2=" ~~~~~~~~~~~~">
19325 <location
19326 file="src/org/lineageos/eleven/adapters/DetailSongAdapter.java"
19327 line="213"
19328 column="52"/>
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 static DiskLruCache open(File directory, int appVersion, int valueCount, long maxSize)"
19335 errorLine2=" ~~~~~~~~~~~~">
19336 <location
19337 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
19338 line="202"
19339 column="19"/>
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 static DiskLruCache open(File directory, int appVersion, int valueCount, long maxSize)"
19346 errorLine2=" ~~~~">
19347 <location
19348 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
19349 line="202"
19350 column="37"/>
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=" public synchronized Snapshot get(String key) throws IOException {"
19357 errorLine2=" ~~~~~~~~">
19358 <location
19359 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
19360 line="414"
19361 column="25"/>
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=" public synchronized Snapshot get(String key) throws IOException {"
19368 errorLine2=" ~~~~~~">
19369 <location
19370 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
19371 line="414"
19372 column="38"/>
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=" public Editor edit(String key) throws IOException {"
19379 errorLine2=" ~~~~~~">
19380 <location
19381 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
19382 line="459"
19383 column="12"/>
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 Editor edit(String key) throws IOException {"
19390 errorLine2=" ~~~~~~">
19391 <location
19392 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
19393 line="459"
19394 column="24"/>
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 synchronized boolean remove(String key) throws IOException {"
19401 errorLine2=" ~~~~~~">
19402 <location
19403 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
19404 line="560"
19405 column="40"/>
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 InputStream getInputStream(int index) {"
19412 errorLine2=" ~~~~~~~~~~~">
19413 <location
19414 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
19415 line="665"
19416 column="16"/>
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 OutputStream newOutputStream(int index) {"
19423 errorLine2=" ~~~~~~~~~~~~">
19424 <location
19425 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
19426 line="703"
19427 column="16"/>
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 DragSortItemTouchHelperCallback(DragSortListener listener) {"
19434 errorLine2=" ~~~~~~~~~~~~~~~~">
19435 <location
19436 file="src/org/lineageos/eleven/widgets/DragSortItemTouchHelperCallback.java"
19437 line="26"
19438 column="44"/>
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 static boolean isLandscape(final Context context) {"
19445 errorLine2=" ~~~~~~~">
19446 <location
19447 file="src/org/lineageos/eleven/utils/ElevenUtils.java"
19448 line="48"
19449 column="45"/>
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 static &lt;T> void execute(final AsyncTask&lt;T, ?, ?> task, final T... args) {"
19456 errorLine2=" ~~~~~~~~~~~~~~~~~~">
19457 <location
19458 file="src/org/lineageos/eleven/utils/ElevenUtils.java"
19459 line="62"
19460 column="42"/>
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 static &lt;T> void execute(final AsyncTask&lt;T, ?, ?> task, final T... args) {"
19467 errorLine2=" ~~~~">
19468 <location
19469 file="src/org/lineageos/eleven/utils/ElevenUtils.java"
19470 line="62"
19471 column="73"/>
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 static void showCheatSheet(final View view) {"
19478 errorLine2=" ~~~~">
19479 <location
19480 file="src/org/lineageos/eleven/utils/ElevenUtils.java"
19481 line="72"
19482 column="45"/>
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 static ImageFetcher getImageFetcher(final FragmentActivity activity) {"
19489 errorLine2=" ~~~~~~~~~~~~">
19490 <location
19491 file="src/org/lineageos/eleven/utils/ElevenUtils.java"
19492 line="111"
19493 column="19"/>
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 ImageFetcher getImageFetcher(final FragmentActivity activity) {"
19500 errorLine2=" ~~~~~~~~~~~~~~~~">
19501 <location
19502 file="src/org/lineageos/eleven/utils/ElevenUtils.java"
19503 line="111"
19504 column="54"/>
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 int getActionBarHeight(Context context) {"
19511 errorLine2=" ~~~~~~~">
19512 <location
19513 file="src/org/lineageos/eleven/utils/ElevenUtils.java"
19514 line="122"
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 int getColumnIndex(String columnName) {"
19522 errorLine2=" ~~~~~~">
19523 <location
19524 file="src/org/lineageos/eleven/utils/EmptyCursor.java"
19525 line="89"
19526 column="31"/>
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 int getColumnIndexOrThrow(String columnName) throws IllegalArgumentException {"
19533 errorLine2=" ~~~~~~">
19534 <location
19535 file="src/org/lineageos/eleven/utils/EmptyCursor.java"
19536 line="94"
19537 column="38"/>
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 String getColumnName(int columnIndex) {"
19544 errorLine2=" ~~~~~~">
19545 <location
19546 file="src/org/lineageos/eleven/utils/EmptyCursor.java"
19547 line="99"
19548 column="12"/>
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 String[] getColumnNames() {"
19555 errorLine2=" ~~~~~~~~">
19556 <location
19557 file="src/org/lineageos/eleven/utils/EmptyCursor.java"
19558 line="104"
19559 column="12"/>
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 byte[] getBlob(int columnIndex) {"
19566 errorLine2=" ~~~~~~">
19567 <location
19568 file="src/org/lineageos/eleven/utils/EmptyCursor.java"
19569 line="114"
19570 column="12"/>
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 String getString(int columnIndex) {"
19577 errorLine2=" ~~~~~~">
19578 <location
19579 file="src/org/lineageos/eleven/utils/EmptyCursor.java"
19580 line="119"
19581 column="12"/>
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 void copyStringToBuffer(int columnIndex, CharArrayBuffer buffer) {"
19588 errorLine2=" ~~~~~~~~~~~~~~~">
19589 <location
19590 file="src/org/lineageos/eleven/utils/EmptyCursor.java"
19591 line="124"
19592 column="53"/>
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 void registerContentObserver(ContentObserver observer) {"
19599 errorLine2=" ~~~~~~~~~~~~~~~">
19600 <location
19601 file="src/org/lineageos/eleven/utils/EmptyCursor.java"
19602 line="182"
19603 column="41"/>
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 void unregisterContentObserver(ContentObserver observer) {"
19610 errorLine2=" ~~~~~~~~~~~~~~~">
19611 <location
19612 file="src/org/lineageos/eleven/utils/EmptyCursor.java"
19613 line="186"
19614 column="43"/>
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 void registerDataSetObserver(DataSetObserver observer) {"
19621 errorLine2=" ~~~~~~~~~~~~~~~">
19622 <location
19623 file="src/org/lineageos/eleven/utils/EmptyCursor.java"
19624 line="190"
19625 column="41"/>
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 void unregisterDataSetObserver(DataSetObserver observer) {"
19632 errorLine2=" ~~~~~~~~~~~~~~~">
19633 <location
19634 file="src/org/lineageos/eleven/utils/EmptyCursor.java"
19635 line="194"
19636 column="43"/>
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 setNotificationUri(ContentResolver cr, Uri uri) {"
19643 errorLine2=" ~~~~~~~~~~~~~~~">
19644 <location
19645 file="src/org/lineageos/eleven/utils/EmptyCursor.java"
19646 line="198"
19647 column="36"/>
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 setNotificationUri(ContentResolver cr, Uri uri) {"
19654 errorLine2=" ~~~">
19655 <location
19656 file="src/org/lineageos/eleven/utils/EmptyCursor.java"
19657 line="198"
19658 column="56"/>
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 Uri getNotificationUri() {"
19665 errorLine2=" ~~~">
19666 <location
19667 file="src/org/lineageos/eleven/utils/EmptyCursor.java"
19668 line="202"
19669 column="12"/>
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 setExtras(Bundle extras) {"
19676 errorLine2=" ~~~~~~">
19677 <location
19678 file="src/org/lineageos/eleven/utils/EmptyCursor.java"
19679 line="212"
19680 column="27"/>
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 Bundle getExtras() {"
19687 errorLine2=" ~~~~~~">
19688 <location
19689 file="src/org/lineageos/eleven/utils/EmptyCursor.java"
19690 line="216"
19691 column="12"/>
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 Bundle respond(Bundle extras) {"
19698 errorLine2=" ~~~~~~">
19699 <location
19700 file="src/org/lineageos/eleven/utils/EmptyCursor.java"
19701 line="221"
19702 column="12"/>
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 Bundle respond(Bundle extras) {"
19709 errorLine2=" ~~~~~~">
19710 <location
19711 file="src/org/lineageos/eleven/utils/EmptyCursor.java"
19712 line="221"
19713 column="27"/>
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 static void fetch(FragmentActivity activity, int songId, TextView textView) {"
19720 errorLine2=" ~~~~~~~~~~~~~~~~">
19721 <location
19722 file="src/org/lineageos/eleven/utils/GenreFetcher.java"
19723 line="39"
19724 column="30"/>
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 static void fetch(FragmentActivity activity, int songId, TextView textView) {"
19731 errorLine2=" ~~~~~~~~">
19732 <location
19733 file="src/org/lineageos/eleven/utils/GenreFetcher.java"
19734 line="39"
19735 column="69"/>
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 Loader&lt;Cursor> onCreateLoader(int id, Bundle args) {"
19742 errorLine2=" ~~~~~~">
19743 <location
19744 file="src/org/lineageos/eleven/utils/GenreFetcher.java"
19745 line="52"
19746 column="50"/>
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 void onLoadFinished(@NonNull Loader&lt;Cursor> loader, Cursor cursor) {"
19753 errorLine2=" ~~~~~~">
19754 <location
19755 file="src/org/lineageos/eleven/utils/GenreFetcher.java"
19756 line="59"
19757 column="64"/>
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 HeaderBar(Context context, AttributeSet attrs) {"
19764 errorLine2=" ~~~~~~~">
19765 <location
19766 file="src/org/lineageos/eleven/ui/HeaderBar.java"
19767 line="52"
19768 column="22"/>
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 HeaderBar(Context context, AttributeSet attrs) {"
19775 errorLine2=" ~~~~~~~~~~~~">
19776 <location
19777 file="src/org/lineageos/eleven/ui/HeaderBar.java"
19778 line="52"
19779 column="39"/>
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 void setFragment(Fragment activity) {"
19786 errorLine2=" ~~~~~~~~">
19787 <location
19788 file="src/org/lineageos/eleven/ui/HeaderBar.java"
19789 line="56"
19790 column="29"/>
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 void setHeaderClickListener(final OnClickListener listener) {"
19797 errorLine2=" ~~~~~~~~~~~~~~~">
19798 <location
19799 file="src/org/lineageos/eleven/ui/HeaderBar.java"
19800 line="88"
19801 column="46"/>
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 boolean onPopupMenuItemClick(final MenuItem item) {"
19808 errorLine2=" ~~~~~~~~">
19809 <location
19810 file="src/org/lineageos/eleven/ui/HeaderBar.java"
19811 line="117"
19812 column="47"/>
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=" protected void onCreate(Bundle savedInstanceState) {"
19819 errorLine2=" ~~~~~~">
19820 <location
19821 file="src/org/lineageos/eleven/ui/activities/HomeActivity.java"
19822 line="100"
19823 column="29"/>
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=" protected void init(Bundle savedInstanceState) {"
19830 errorLine2=" ~~~~~~">
19831 <location
19832 file="src/org/lineageos/eleven/ui/activities/HomeActivity.java"
19833 line="112"
19834 column="25"/>
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 Fragment getTopFragment() {"
19841 errorLine2=" ~~~~~~~~">
19842 <location
19843 file="src/org/lineageos/eleven/ui/activities/HomeActivity.java"
19844 line="167"
19845 column="12"/>
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 postRemoveFragment(final Fragment frag) {"
19852 errorLine2=" ~~~~~~~~">
19853 <location
19854 file="src/org/lineageos/eleven/ui/activities/HomeActivity.java"
19855 line="171"
19856 column="42"/>
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=" protected void onNewIntent(Intent intent) {"
19863 errorLine2=" ~~~~~~">
19864 <location
19865 file="src/org/lineageos/eleven/ui/activities/HomeActivity.java"
19866 line="185"
19867 column="32"/>
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 onActivityResult(int requestCode, int resultCode, Intent data) {"
19874 errorLine2=" ~~~~~~">
19875 <location
19876 file="src/org/lineageos/eleven/ui/activities/HomeActivity.java"
19877 line="346"
19878 column="70"/>
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=" public void selectNewPhoto(String key) {"
19885 errorLine2=" ~~~~~~">
19886 <location
19887 file="src/org/lineageos/eleven/ui/activities/HomeActivity.java"
19888 line="367"
19889 column="32"/>
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 boolean onOptionsItemSelected(final MenuItem item) {"
19896 errorLine2=" ~~~~~~~~">
19897 <location
19898 file="src/org/lineageos/eleven/ui/activities/HomeActivity.java"
19899 line="376"
19900 column="48"/>
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=" PagerAdapter.MusicFragments getMusicFragmentParent();"
19907 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~">
19908 <location
19909 file="src/org/lineageos/eleven/ui/fragments/IChildFragment.java"
19910 line="22"
19911 column="5"/>
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=" void onPopupMenuClicked(final View v, final int position);"
19918 errorLine2=" ~~~~">
19919 <location
19920 file="src/org/lineageos/eleven/widgets/IPopupMenuCallback.java"
19921 line="23"
19922 column="39"/>
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=" void setPopupMenuClickedListener(final IListener listener);"
19929 errorLine2=" ~~~~~~~~~">
19930 <location
19931 file="src/org/lineageos/eleven/widgets/IPopupMenuCallback.java"
19932 line="26"
19933 column="44"/>
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 ImageCache(final Context context) {"
19940 errorLine2=" ~~~~~~~">
19941 <location
19942 file="src/org/lineageos/eleven/cache/ImageCache.java"
19943 line="111"
19944 column="29"/>
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 static ImageCache getInstance(final Context context) {"
19951 errorLine2=" ~~~~~~~~~~">
19952 <location
19953 file="src/org/lineageos/eleven/cache/ImageCache.java"
19954 line="121"
19955 column="19"/>
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=" public static ImageCache getInstance(final Context context) {"
19962 errorLine2=" ~~~~~~~">
19963 <location
19964 file="src/org/lineageos/eleven/cache/ImageCache.java"
19965 line="121"
19966 column="48"/>
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=" public void initLruCache(final Context context) {"
19973 errorLine2=" ~~~~~~~">
19974 <location
19975 file="src/org/lineageos/eleven/cache/ImageCache.java"
19976 line="177"
19977 column="36"/>
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=" public static ImageCache findOrCreateCache(final FragmentActivity activity) {"
19984 errorLine2=" ~~~~~~~~~~">
19985 <location
19986 file="src/org/lineageos/eleven/cache/ImageCache.java"
19987 line="216"
19988 column="19"/>
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 static ImageCache findOrCreateCache(final FragmentActivity activity) {"
19995 errorLine2=" ~~~~~~~~~~~~~~~~">
19996 <location
19997 file="src/org/lineageos/eleven/cache/ImageCache.java"
19998 line="216"
19999 column="54"/>
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 RetainFragment findOrCreateRetainFragment(final FragmentManager fm) {"
20006 errorLine2=" ~~~~~~~~~~~~~~">
20007 <location
20008 file="src/org/lineageos/eleven/cache/ImageCache.java"
20009 line="241"
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 RetainFragment findOrCreateRetainFragment(final FragmentManager fm) {"
20017 errorLine2=" ~~~~~~~~~~~~~~~">
20018 <location
20019 file="src/org/lineageos/eleven/cache/ImageCache.java"
20020 line="241"
20021 column="67"/>
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 addBitmapToCache(final String data, final Bitmap bitmap) {"
20028 errorLine2=" ~~~~~~">
20029 <location
20030 file="src/org/lineageos/eleven/cache/ImageCache.java"
20031 line="259"
20032 column="40"/>
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 void addBitmapToCache(final String data, final Bitmap bitmap) {"
20039 errorLine2=" ~~~~~~">
20040 <location
20041 file="src/org/lineageos/eleven/cache/ImageCache.java"
20042 line="259"
20043 column="59"/>
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 void addBitmapToCache(final String data, final Bitmap bitmap, final boolean replace) {"
20050 errorLine2=" ~~~~~~">
20051 <location
20052 file="src/org/lineageos/eleven/cache/ImageCache.java"
20053 line="270"
20054 column="40"/>
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 void addBitmapToCache(final String data, final Bitmap bitmap, final boolean replace) {"
20061 errorLine2=" ~~~~~~">
20062 <location
20063 file="src/org/lineageos/eleven/cache/ImageCache.java"
20064 line="270"
20065 column="59"/>
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 void addBitmapToMemCache(final String data, final Bitmap bitmap) {"
20072 errorLine2=" ~~~~~~">
20073 <location
20074 file="src/org/lineageos/eleven/cache/ImageCache.java"
20075 line="315"
20076 column="43"/>
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 addBitmapToMemCache(final String data, final Bitmap bitmap) {"
20083 errorLine2=" ~~~~~~">
20084 <location
20085 file="src/org/lineageos/eleven/cache/ImageCache.java"
20086 line="315"
20087 column="62"/>
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 addBitmapToMemCache(final String data, final Bitmap bitmap, final boolean replace) {"
20094 errorLine2=" ~~~~~~">
20095 <location
20096 file="src/org/lineageos/eleven/cache/ImageCache.java"
20097 line="326"
20098 column="43"/>
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 addBitmapToMemCache(final String data, final Bitmap bitmap, final boolean replace) {"
20105 errorLine2=" ~~~~~~">
20106 <location
20107 file="src/org/lineageos/eleven/cache/ImageCache.java"
20108 line="326"
20109 column="62"/>
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 final Bitmap getBitmapFromMemCache(final String data) {"
20116 errorLine2=" ~~~~~~">
20117 <location
20118 file="src/org/lineageos/eleven/cache/ImageCache.java"
20119 line="342"
20120 column="18"/>
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 final Bitmap getBitmapFromMemCache(final String data) {"
20127 errorLine2=" ~~~~~~">
20128 <location
20129 file="src/org/lineageos/eleven/cache/ImageCache.java"
20130 line="342"
20131 column="53"/>
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 final Bitmap getBitmapFromDiskCache(final String data) {"
20138 errorLine2=" ~~~~~~">
20139 <location
20140 file="src/org/lineageos/eleven/cache/ImageCache.java"
20141 line="352"
20142 column="18"/>
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 final Bitmap getBitmapFromDiskCache(final String data) {"
20149 errorLine2=" ~~~~~~">
20150 <location
20151 file="src/org/lineageos/eleven/cache/ImageCache.java"
20152 line="352"
20153 column="54"/>
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 final Bitmap getCachedBitmap(final String data) {"
20160 errorLine2=" ~~~~~~">
20161 <location
20162 file="src/org/lineageos/eleven/cache/ImageCache.java"
20163 line="393"
20164 column="18"/>
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 getCachedBitmap(final String data) {"
20171 errorLine2=" ~~~~~~">
20172 <location
20173 file="src/org/lineageos/eleven/cache/ImageCache.java"
20174 line="393"
20175 column="47"/>
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 getCachedArtwork(final Context context, final String data, final long id) {"
20182 errorLine2=" ~~~~~~">
20183 <location
20184 file="src/org/lineageos/eleven/cache/ImageCache.java"
20185 line="417"
20186 column="18"/>
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 getCachedArtwork(final Context context, final String data, final long id) {"
20193 errorLine2=" ~~~~~~~">
20194 <location
20195 file="src/org/lineageos/eleven/cache/ImageCache.java"
20196 line="417"
20197 column="48"/>
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 getCachedArtwork(final Context context, final String data, final long id) {"
20204 errorLine2=" ~~~~~~">
20205 <location
20206 file="src/org/lineageos/eleven/cache/ImageCache.java"
20207 line="417"
20208 column="71"/>
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 getArtworkFromFile(final Context context, final long albumId) {"
20215 errorLine2=" ~~~~~~">
20216 <location
20217 file="src/org/lineageos/eleven/cache/ImageCache.java"
20218 line="439"
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 getArtworkFromFile(final Context context, final long albumId) {"
20226 errorLine2=" ~~~~~~~">
20227 <location
20228 file="src/org/lineageos/eleven/cache/ImageCache.java"
20229 line="439"
20230 column="50"/>
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 void removeFromCache(final String key) {"
20237 errorLine2=" ~~~~~~">
20238 <location
20239 file="src/org/lineageos/eleven/cache/ImageCache.java"
20240 line="552"
20241 column="39"/>
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 static File getDiskCacheDir(final Context context, final String uniqueName) {"
20248 errorLine2=" ~~~~">
20249 <location
20250 file="src/org/lineageos/eleven/cache/ImageCache.java"
20251 line="580"
20252 column="19"/>
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 static File getDiskCacheDir(final Context context, final String uniqueName) {"
20259 errorLine2=" ~~~~~~~">
20260 <location
20261 file="src/org/lineageos/eleven/cache/ImageCache.java"
20262 line="580"
20263 column="46"/>
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 static File getDiskCacheDir(final Context context, final String uniqueName) {"
20270 errorLine2=" ~~~~~~">
20271 <location
20272 file="src/org/lineageos/eleven/cache/ImageCache.java"
20273 line="580"
20274 column="69"/>
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 static File getExternalCacheDir(final Context context) {"
20281 errorLine2=" ~~~~">
20282 <location
20283 file="src/org/lineageos/eleven/cache/ImageCache.java"
20284 line="594"
20285 column="19"/>
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 static File getExternalCacheDir(final Context context) {"
20292 errorLine2=" ~~~~~~~">
20293 <location
20294 file="src/org/lineageos/eleven/cache/ImageCache.java"
20295 line="594"
20296 column="50"/>
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 long getUsableSpace(final File path) {"
20303 errorLine2=" ~~~~">
20304 <location
20305 file="src/org/lineageos/eleven/cache/ImageCache.java"
20306 line="604"
20307 column="45"/>
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 String hashKeyForDisk(final String key) {"
20314 errorLine2=" ~~~~~~">
20315 <location
20316 file="src/org/lineageos/eleven/cache/ImageCache.java"
20317 line="614"
20318 column="19"/>
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 String hashKeyForDisk(final String key) {"
20325 errorLine2=" ~~~~~~">
20326 <location
20327 file="src/org/lineageos/eleven/cache/ImageCache.java"
20328 line="614"
20329 column="47"/>
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 void onCreate(final Bundle savedInstanceState) {"
20336 errorLine2=" ~~~~~~">
20337 <location
20338 file="src/org/lineageos/eleven/cache/ImageCache.java"
20339 line="664"
20340 column="36"/>
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 void setObject(final Object object) {"
20347 errorLine2=" ~~~~~~">
20348 <location
20349 file="src/org/lineageos/eleven/cache/ImageCache.java"
20350 line="675"
20351 column="37"/>
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 Object getObject() {"
20358 errorLine2=" ~~~~~~">
20359 <location
20360 file="src/org/lineageos/eleven/cache/ImageCache.java"
20361 line="684"
20362 column="16"/>
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 int getBitmapSize(final Bitmap bitmap) {"
20369 errorLine2=" ~~~~~~">
20370 <location
20371 file="src/org/lineageos/eleven/cache/ImageCache.java"
20372 line="706"
20373 column="47"/>
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=" protected int sizeOf(final String paramString, final Bitmap paramBitmap) {"
20380 errorLine2=" ~~~~~~">
20381 <location
20382 file="src/org/lineageos/eleven/cache/ImageCache.java"
20383 line="711"
20384 column="36"/>
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=" protected int sizeOf(final String paramString, final Bitmap paramBitmap) {"
20391 errorLine2=" ~~~~~~">
20392 <location
20393 file="src/org/lineageos/eleven/cache/ImageCache.java"
20394 line="711"
20395 column="62"/>
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 ImageFetcher(final Context context) {"
20402 errorLine2=" ~~~~~~~">
20403 <location
20404 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20405 line="57"
20406 column="31"/>
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 static ImageFetcher getInstance(final Context context) {"
20413 errorLine2=" ~~~~~~~~~~~~">
20414 <location
20415 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20416 line="68"
20417 column="19"/>
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 ImageFetcher getInstance(final Context context) {"
20424 errorLine2=" ~~~~~~~">
20425 <location
20426 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20427 line="68"
20428 column="50"/>
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=" public void loadPlaylistArtistImage(final long playlistId, final ImageView imageView) {"
20435 errorLine2=" ~~~~~~~~~">
20436 <location
20437 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20438 line="85"
20439 column="70"/>
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=" public void loadPlaylistCoverArtImage(final long playlistId, final ImageView imageView) {"
20446 errorLine2=" ~~~~~~~~~">
20447 <location
20448 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20449 line="95"
20450 column="72"/>
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 void loadAlbumImage(final String artistName, final String albumName, final long albumId,"
20457 errorLine2=" ~~~~~~">
20458 <location
20459 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20460 line="102"
20461 column="38"/>
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 void loadAlbumImage(final String artistName, final String albumName, final long albumId,"
20468 errorLine2=" ~~~~~~">
20469 <location
20470 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20471 line="102"
20472 column="63"/>
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=" final ImageView imageView) {"
20479 errorLine2=" ~~~~~~~~~">
20480 <location
20481 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20482 line="103"
20483 column="38"/>
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 loadCurrentArtwork(final ImageView imageView) {"
20490 errorLine2=" ~~~~~~~~~">
20491 <location
20492 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20493 line="111"
20494 column="42"/>
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 updateScrimImage(final AlbumScrimImage image,"
20501 errorLine2=" ~~~~~~~~~~~~~~~">
20502 <location
20503 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20504 line="116"
20505 column="40"/>
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=" final ColorExtractor.Callback callback) {"
20512 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
20513 <location
20514 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20515 line="117"
20516 column="40"/>
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 static String getCurrentCacheKey() {"
20523 errorLine2=" ~~~~~~">
20524 <location
20525 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20526 line="142"
20527 column="19"/>
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=" public void loadArtistImage(final String key, final ImageView imageView) {"
20534 errorLine2=" ~~~~~~">
20535 <location
20536 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20537 line="149"
20538 column="39"/>
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 loadArtistImage(final String key, final ImageView imageView) {"
20545 errorLine2=" ~~~~~~~~~">
20546 <location
20547 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20548 line="149"
20549 column="57"/>
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 loadArtistImage(final String key, final ImageView imageView,"
20556 errorLine2=" ~~~~~~">
20557 <location
20558 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20559 line="156"
20560 column="39"/>
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=" public void loadArtistImage(final String key, final ImageView imageView,"
20567 errorLine2=" ~~~~~~~~~">
20568 <location
20569 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20570 line="156"
20571 column="57"/>
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 void removeFromCache(final String key) {"
20578 errorLine2=" ~~~~~~">
20579 <location
20580 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20581 line="176"
20582 column="39"/>
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 BitmapWithColors getArtwork(final String albumName, final long albumId,"
20589 errorLine2=" ~~~~~~~~~~~~~~~~">
20590 <location
20591 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20592 line="191"
20593 column="12"/>
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 BitmapWithColors getArtwork(final String albumName, final long albumId,"
20600 errorLine2=" ~~~~~~">
20601 <location
20602 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20603 line="191"
20604 column="46"/>
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 Bitmap getArtworkBitmap(final String albumName, final long albumId) {"
20611 errorLine2=" ~~~~~~">
20612 <location
20613 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20614 line="203"
20615 column="12"/>
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 Bitmap getArtworkBitmap(final String albumName, final long albumId) {"
20622 errorLine2=" ~~~~~~">
20623 <location
20624 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20625 line="203"
20626 column="42"/>
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 static String generateAlbumCacheKey(final String albumName, final String artistName) {"
20633 errorLine2=" ~~~~~~">
20634 <location
20635 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20636 line="225"
20637 column="19"/>
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 static String generateAlbumCacheKey(final String albumName, final String artistName) {"
20644 errorLine2=" ~~~~~~">
20645 <location
20646 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20647 line="225"
20648 column="54"/>
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 static String generateAlbumCacheKey(final String albumName, final String artistName) {"
20655 errorLine2=" ~~~~~~">
20656 <location
20657 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20658 line="225"
20659 column="78"/>
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 static Bitmap decodeSampledBitmapFromUri(ContentResolver cr, final Uri selectedImage) {"
20666 errorLine2=" ~~~~~~">
20667 <location
20668 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20669 line="240"
20670 column="19"/>
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 static Bitmap decodeSampledBitmapFromUri(ContentResolver cr, final Uri selectedImage) {"
20677 errorLine2=" ~~~~~~~~~~~~~~~">
20678 <location
20679 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20680 line="240"
20681 column="53"/>
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 Bitmap decodeSampledBitmapFromUri(ContentResolver cr, final Uri selectedImage) {"
20688 errorLine2=" ~~~">
20689 <location
20690 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20691 line="240"
20692 column="79"/>
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 int calculateInSampleSize(final BitmapFactory.Options options,"
20699 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~">
20700 <location
20701 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20702 line="289"
20703 column="51"/>
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 Bitmap scaleBitmapForImageView(Bitmap src, ImageView imageView) {"
20710 errorLine2=" ~~~~~~">
20711 <location
20712 file="src/org/lineageos/eleven/utils/ImageUtils.java"
20713 line="33"
20714 column="19"/>
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 scaleBitmapForImageView(Bitmap src, ImageView imageView) {"
20721 errorLine2=" ~~~~~~">
20722 <location
20723 file="src/org/lineageos/eleven/utils/ImageUtils.java"
20724 line="33"
20725 column="50"/>
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 scaleBitmapForImageView(Bitmap src, ImageView imageView) {"
20732 errorLine2=" ~~~~~~~~~">
20733 <location
20734 file="src/org/lineageos/eleven/utils/ImageUtils.java"
20735 line="33"
20736 column="62"/>
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 drawableToBitmap(Drawable drawable) {"
20743 errorLine2=" ~~~~~~">
20744 <location
20745 file="src/org/lineageos/eleven/utils/ImageUtils.java"
20746 line="64"
20747 column="19"/>
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 Bitmap drawableToBitmap(Drawable drawable) {"
20754 errorLine2=" ~~~~~~~~">
20755 <location
20756 file="src/org/lineageos/eleven/utils/ImageUtils.java"
20757 line="64"
20758 column="43"/>
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=" protected ImageCache mImageCache;"
20765 errorLine2=" ~~~~~~~~~~">
20766 <location
20767 file="src/org/lineageos/eleven/cache/ImageWorker.java"
20768 line="81"
20769 column="15"/>
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=" protected ImageWorker(final Context context) {"
20776 errorLine2=" ~~~~~~~">
20777 <location
20778 file="src/org/lineageos/eleven/cache/ImageWorker.java"
20779 line="88"
20780 column="33"/>
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 void setImageCache(final ImageCache cacheCallback) {"
20787 errorLine2=" ~~~~~~~~~~">
20788 <location
20789 file="src/org/lineageos/eleven/cache/ImageWorker.java"
20790 line="100"
20791 column="37"/>
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 void addBitmapToCache(final String key, final Bitmap bitmap) {"
20798 errorLine2=" ~~~~~~">
20799 <location
20800 file="src/org/lineageos/eleven/cache/ImageWorker.java"
20801 line="131"
20802 column="40"/>
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 void addBitmapToCache(final String key, final Bitmap bitmap) {"
20809 errorLine2=" ~~~~~~">
20810 <location
20811 file="src/org/lineageos/eleven/cache/ImageWorker.java"
20812 line="131"
20813 column="58"/>
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=" public Drawable getNewDrawable(ImageType imageType, String name,"
20820 errorLine2=" ~~~~~~~~">
20821 <location
20822 file="src/org/lineageos/eleven/cache/ImageWorker.java"
20823 line="140"
20824 column="12"/>
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=" public Drawable getNewDrawable(ImageType imageType, String name,"
20831 errorLine2=" ~~~~~~~~~">
20832 <location
20833 file="src/org/lineageos/eleven/cache/ImageWorker.java"
20834 line="140"
20835 column="36"/>
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 Drawable getNewDrawable(ImageType imageType, String name,"
20842 errorLine2=" ~~~~~~">
20843 <location
20844 file="src/org/lineageos/eleven/cache/ImageWorker.java"
20845 line="140"
20846 column="57"/>
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=" String identifier) {"
20853 errorLine2=" ~~~~~~">
20854 <location
20855 file="src/org/lineageos/eleven/cache/ImageWorker.java"
20856 line="141"
20857 column="36"/>
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 static Bitmap getBitmapInBackground(final Context context, final ImageCache imageCache,"
20864 errorLine2=" ~~~~~~">
20865 <location
20866 file="src/org/lineageos/eleven/cache/ImageWorker.java"
20867 line="148"
20868 column="19"/>
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 static Bitmap getBitmapInBackground(final Context context, final ImageCache imageCache,"
20875 errorLine2=" ~~~~~~~">
20876 <location
20877 file="src/org/lineageos/eleven/cache/ImageWorker.java"
20878 line="148"
20879 column="54"/>
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 static Bitmap getBitmapInBackground(final Context context, final ImageCache imageCache,"
20886 errorLine2=" ~~~~~~~~~~">
20887 <location
20888 file="src/org/lineageos/eleven/cache/ImageWorker.java"
20889 line="148"
20890 column="77"/>
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=" final String key, final long albumId,"
20897 errorLine2=" ~~~~~~">
20898 <location
20899 file="src/org/lineageos/eleven/cache/ImageWorker.java"
20900 line="149"
20901 column="54"/>
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=" final ImageType imageType) {"
20908 errorLine2=" ~~~~~~~~~">
20909 <location
20910 file="src/org/lineageos/eleven/cache/ImageWorker.java"
20911 line="150"
20912 column="54"/>
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 Drawable getTopDrawable(final Drawable drawable) {"
20919 errorLine2=" ~~~~~~~~">
20920 <location
20921 file="src/org/lineageos/eleven/cache/ImageWorker.java"
20922 line="182"
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 Drawable getTopDrawable(final Drawable drawable) {"
20930 errorLine2=" ~~~~~~~~">
20931 <location
20932 file="src/org/lineageos/eleven/cache/ImageWorker.java"
20933 line="182"
20934 column="49"/>
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 TransitionDrawable createImageTransitionDrawable(final Resources resources,"
20941 errorLine2=" ~~~~~~~~~~~~~~~~~~">
20942 <location
20943 file="src/org/lineageos/eleven/cache/ImageWorker.java"
20944 line="206"
20945 column="19"/>
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=" public static TransitionDrawable createImageTransitionDrawable(final Resources resources,"
20952 errorLine2=" ~~~~~~~~~">
20953 <location
20954 file="src/org/lineageos/eleven/cache/ImageWorker.java"
20955 line="206"
20956 column="74"/>
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 Drawable fromDrawable,"
20963 errorLine2=" ~~~~~~~~">
20964 <location
20965 file="src/org/lineageos/eleven/cache/ImageWorker.java"
20966 line="207"
20967 column="74"/>
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=" final Bitmap bitmap,"
20974 errorLine2=" ~~~~~~">
20975 <location
20976 file="src/org/lineageos/eleven/cache/ImageWorker.java"
20977 line="208"
20978 column="74"/>
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 TransitionDrawable createPaletteTransition(AlbumScrimImage scrimImage,"
20985 errorLine2=" ~~~~~~~~~~~~~~~~~~">
20986 <location
20987 file="src/org/lineageos/eleven/cache/ImageWorker.java"
20988 line="244"
20989 column="19"/>
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 createPaletteTransition(AlbumScrimImage scrimImage,"
20996 errorLine2=" ~~~~~~~~~~~~~~~">
20997 <location
20998 file="src/org/lineageos/eleven/cache/ImageWorker.java"
20999 line="244"
21000 column="62"/>
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 void cancelWork(final View image) {"
21007 errorLine2=" ~~~~">
21008 <location
21009 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21010 line="267"
21011 column="41"/>
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=" public static boolean executePotentialWork(final String key, final View view) {"
21018 errorLine2=" ~~~~~~">
21019 <location
21020 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21021 line="286"
21022 column="54"/>
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=" public static boolean executePotentialWork(final String key, final View view) {"
21029 errorLine2=" ~~~~">
21030 <location
21031 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21032 line="286"
21033 column="72"/>
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 AsyncTaskContainer getAsyncTaskContainer(final View view) {"
21040 errorLine2=" ~~~~~~~~~~~~~~~~~~">
21041 <location
21042 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21043 line="309"
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 AsyncTaskContainer getAsyncTaskContainer(final View view) {"
21051 errorLine2=" ~~~~">
21052 <location
21053 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21054 line="309"
21055 column="66"/>
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 BitmapWorkerTask getBitmapWorkerTask(final View view) {"
21062 errorLine2=" ~~~~~~~~~~~~~~~~">
21063 <location
21064 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21065 line="329"
21066 column="19"/>
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 BitmapWorkerTask getBitmapWorkerTask(final View view) {"
21073 errorLine2=" ~~~~">
21074 <location
21075 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21076 line="329"
21077 column="62"/>
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 AsyncTaskContainer(final BitmapWorkerTask&lt;?, ?, ?> bitmapWorkerTask) {"
21084 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~">
21085 <location
21086 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21087 line="355"
21088 column="41"/>
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 BitmapWorkerTask&lt;?, ?, ?> getBitmapWorkerTask() {"
21095 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~">
21096 <location
21097 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21098 line="363"
21099 column="16"/>
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 String getKey() {"
21106 errorLine2=" ~~~~~~">
21107 <location
21108 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21109 line="367"
21110 column="16"/>
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 void loadDefaultImage(final ImageView imageView, final ImageType imageType,"
21117 errorLine2=" ~~~~~~~~~">
21118 <location
21119 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21120 line="378"
21121 column="40"/>
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 void loadDefaultImage(final ImageView imageView, final ImageType imageType,"
21128 errorLine2=" ~~~~~~~~~">
21129 <location
21130 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21131 line="378"
21132 column="67"/>
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=" final String name, final String identifier) {"
21139 errorLine2=" ~~~~~~">
21140 <location
21141 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21142 line="379"
21143 column="40"/>
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=" final String name, final String identifier) {"
21150 errorLine2=" ~~~~~~">
21151 <location
21152 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21153 line="379"
21154 column="59"/>
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=" protected void loadImage(final String key,"
21161 errorLine2=" ~~~~~~">
21162 <location
21163 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21164 line="403"
21165 column="36"/>
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=" final String artistName,"
21172 errorLine2=" ~~~~~~">
21173 <location
21174 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21175 line="404"
21176 column="36"/>
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=" final String albumName,"
21183 errorLine2=" ~~~~~~">
21184 <location
21185 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21186 line="405"
21187 column="36"/>
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 ImageView imageView,"
21194 errorLine2=" ~~~~~~~~~">
21195 <location
21196 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21197 line="407"
21198 column="36"/>
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 ImageType imageType) {"
21205 errorLine2=" ~~~~~~~~~">
21206 <location
21207 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21208 line="408"
21209 column="36"/>
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, final String artistName, final String albumName,"
21216 errorLine2=" ~~~~~~">
21217 <location
21218 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21219 line="424"
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=" protected void loadImage(final String key, final String artistName, final String albumName,"
21227 errorLine2=" ~~~~~~">
21228 <location
21229 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21230 line="424"
21231 column="54"/>
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=" protected void loadImage(final String key, final String artistName, final String albumName,"
21238 errorLine2=" ~~~~~~">
21239 <location
21240 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21241 line="424"
21242 column="79"/>
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 long albumId, final ImageView imageView,"
21249 errorLine2=" ~~~~~~~~~">
21250 <location
21251 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21252 line="425"
21253 column="56"/>
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, final boolean scaleImgToView) {"
21260 errorLine2=" ~~~~~~~~~">
21261 <location
21262 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21263 line="426"
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=" public void loadPlaylistImage(final long playlistId, final PlaylistWorkerType type,"
21271 errorLine2=" ~~~~~~~~~~~~~~~~~~">
21272 <location
21273 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21274 line="484"
21275 column="64"/>
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=" final ImageView imageView) {"
21282 errorLine2=" ~~~~~~~~~">
21283 <location
21284 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21285 line="485"
21286 column="41"/>
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 loadBlurImage(final String key, final String artistName, final String albumName,"
21293 errorLine2=" ~~~~~~">
21294 <location
21295 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21296 line="545"
21297 column="40"/>
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=" protected void loadBlurImage(final String key, final String artistName, final String albumName,"
21304 errorLine2=" ~~~~~~">
21305 <location
21306 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21307 line="545"
21308 column="58"/>
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=" protected void loadBlurImage(final String key, final String artistName, final String albumName,"
21315 errorLine2=" ~~~~~~">
21316 <location
21317 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21318 line="545"
21319 column="83"/>
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=" final long albumId, final AlbumScrimImage albumScrimImage) {"
21326 errorLine2=" ~~~~~~~~~~~~~~~">
21327 <location
21328 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21329 line="546"
21330 column="60"/>
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=" public Loader&lt;SectionListContainer&lt;Song>> onCreateLoader(final int id, final Bundle args) {"
21337 errorLine2=" ~~~~~~">
21338 <location
21339 file="src/org/lineageos/eleven/ui/fragments/profile/LastAddedFragment.java"
21340 line="51"
21341 column="82"/>
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=" public void setupNoResultsContainer(NoResultsContainer empty) {"
21348 errorLine2=" ~~~~~~~~~~~~~~~~~~">
21349 <location
21350 file="src/org/lineageos/eleven/ui/fragments/profile/LastAddedFragment.java"
21351 line="60"
21352 column="41"/>
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=" public final View onCreateView(LayoutInflater inflater, ViewGroup container,"
21359 errorLine2=" ~~~~">
21360 <location
21361 file="src/org/lineageos/eleven/ui/fragments/profile/LastAddedFragment.java"
21362 line="68"
21363 column="18"/>
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=" public final View onCreateView(LayoutInflater inflater, ViewGroup container,"
21370 errorLine2=" ~~~~~~~~~~~~~~">
21371 <location
21372 file="src/org/lineageos/eleven/ui/fragments/profile/LastAddedFragment.java"
21373 line="68"
21374 column="36"/>
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=" public final View onCreateView(LayoutInflater inflater, ViewGroup container,"
21381 errorLine2=" ~~~~~~~~~">
21382 <location
21383 file="src/org/lineageos/eleven/ui/fragments/profile/LastAddedFragment.java"
21384 line="68"
21385 column="61"/>
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=" Bundle savedInstanceState) {"
21392 errorLine2=" ~~~~~~">
21393 <location
21394 file="src/org/lineageos/eleven/ui/fragments/profile/LastAddedFragment.java"
21395 line="69"
21396 column="36"/>
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=" protected SmartPlaylistType getSmartPlaylistType() {"
21403 errorLine2=" ~~~~~~~~~~~~~~~~~">
21404 <location
21405 file="src/org/lineageos/eleven/ui/fragments/profile/LastAddedFragment.java"
21406 line="89"
21407 column="15"/>
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 LastAddedLoader(final Context context) {"
21414 errorLine2=" ~~~~~~~">
21415 <location
21416 file="src/org/lineageos/eleven/loaders/LastAddedLoader.java"
21417 line="51"
21418 column="34"/>
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 List&lt;Song> loadInBackground() {"
21425 errorLine2=" ~~~~~~~~~~">
21426 <location
21427 file="src/org/lineageos/eleven/loaders/LastAddedLoader.java"
21428 line="56"
21429 column="12"/>
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 static Cursor makeLastAddedCursor(final Context context) {"
21436 errorLine2=" ~~~~~~">
21437 <location
21438 file="src/org/lineageos/eleven/loaders/LastAddedLoader.java"
21439 line="105"
21440 column="19"/>
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=" public static Cursor makeLastAddedCursor(final Context context) {"
21447 errorLine2=" ~~~~~~~">
21448 <location
21449 file="src/org/lineageos/eleven/loaders/LastAddedLoader.java"
21450 line="105"
21451 column="52"/>
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=" public LayoutSuppressingImageView(final Context context, final AttributeSet attrs) {"
21458 errorLine2=" ~~~~~~~">
21459 <location
21460 file="src/org/lineageos/eleven/widgets/LayoutSuppressingImageView.java"
21461 line="37"
21462 column="45"/>
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 LayoutSuppressingImageView(final Context context, final AttributeSet attrs) {"
21469 errorLine2=" ~~~~~~~~~~~~">
21470 <location
21471 file="src/org/lineageos/eleven/widgets/LayoutSuppressingImageView.java"
21472 line="37"
21473 column="68"/>
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 LetterTileDrawable(final Context context) {"
21480 errorLine2=" ~~~~~~~">
21481 <location
21482 file="src/org/lineageos/eleven/widgets/LetterTileDrawable.java"
21483 line="118"
21484 column="37"/>
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 void draw(final Canvas canvas) {"
21491 errorLine2=" ~~~~~~">
21492 <location
21493 file="src/org/lineageos/eleven/widgets/LetterTileDrawable.java"
21494 line="127"
21495 column="28"/>
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 void setBounds(Rect bounds) {"
21502 errorLine2=" ~~~~">
21503 <location
21504 file="src/org/lineageos/eleven/widgets/LetterTileDrawable.java"
21505 line="138"
21506 column="27"/>
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 void setColorFilter(final ColorFilter cf) {"
21513 errorLine2=" ~~~~~~~~~~~">
21514 <location
21515 file="src/org/lineageos/eleven/widgets/LetterTileDrawable.java"
21516 line="269"
21517 column="38"/>
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 void setTileDetails(final String displayName, final String identifier,"
21524 errorLine2=" ~~~~~~">
21525 <location
21526 file="src/org/lineageos/eleven/widgets/LetterTileDrawable.java"
21527 line="304"
21528 column="38"/>
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 void setTileDetails(final String displayName, final String identifier,"
21535 errorLine2=" ~~~~~~">
21536 <location
21537 file="src/org/lineageos/eleven/widgets/LetterTileDrawable.java"
21538 line="304"
21539 column="64"/>
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=" final ImageType type) {"
21546 errorLine2=" ~~~~~~~~~">
21547 <location
21548 file="src/org/lineageos/eleven/widgets/LetterTileDrawable.java"
21549 line="305"
21550 column="38"/>
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 static BitmapWithColors createDefaultBitmap(Context context, String identifier,"
21557 errorLine2=" ~~~~~~~~~~~~~~~~">
21558 <location
21559 file="src/org/lineageos/eleven/widgets/LetterTileDrawable.java"
21560 line="347"
21561 column="19"/>
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 static BitmapWithColors createDefaultBitmap(Context context, String identifier,"
21568 errorLine2=" ~~~~~~~">
21569 <location
21570 file="src/org/lineageos/eleven/widgets/LetterTileDrawable.java"
21571 line="347"
21572 column="56"/>
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 static BitmapWithColors createDefaultBitmap(Context context, String identifier,"
21579 errorLine2=" ~~~~~~">
21580 <location
21581 file="src/org/lineageos/eleven/widgets/LetterTileDrawable.java"
21582 line="347"
21583 column="73"/>
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=" ImageType type, boolean isCircle,"
21590 errorLine2=" ~~~~~~~~~">
21591 <location
21592 file="src/org/lineageos/eleven/widgets/LetterTileDrawable.java"
21593 line="348"
21594 column="56"/>
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=" public static &lt;E> ArrayList&lt;E> newArrayList() {"
21601 errorLine2=" ~~~~~~~~~~~~">
21602 <location
21603 file="src/org/lineageos/eleven/utils/Lists.java"
21604 line="37"
21605 column="23"/>
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 &lt;E> LinkedList&lt;E> newLinkedList() {"
21612 errorLine2=" ~~~~~~~~~~~~~">
21613 <location
21614 file="src/org/lineageos/eleven/utils/Lists.java"
21615 line="49"
21616 column="23"/>
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 LoadingEmptyContainer(Context context, AttributeSet attrs) {"
21623 errorLine2=" ~~~~~~~">
21624 <location
21625 file="src/org/lineageos/eleven/widgets/LoadingEmptyContainer.java"
21626 line="39"
21627 column="34"/>
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 LoadingEmptyContainer(Context context, AttributeSet attrs) {"
21634 errorLine2=" ~~~~~~~~~~~~">
21635 <location
21636 file="src/org/lineageos/eleven/widgets/LoadingEmptyContainer.java"
21637 line="39"
21638 column="51"/>
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=" public NoResultsContainer getNoResultsContainer() {"
21645 errorLine2=" ~~~~~~~~~~~~~~~~~~">
21646 <location
21647 file="src/org/lineageos/eleven/widgets/LoadingEmptyContainer.java"
21648 line="78"
21649 column="12"/>
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 void onReceive(Context context, Intent intent) {"
21656 errorLine2=" ~~~~~~~">
21657 <location
21658 file="src/org/lineageos/eleven/locale/LocaleChangeReceiver.java"
21659 line="32"
21660 column="27"/>
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 void onReceive(Context context, Intent intent) {"
21667 errorLine2=" ~~~~~~">
21668 <location
21669 file="src/org/lineageos/eleven/locale/LocaleChangeReceiver.java"
21670 line="32"
21671 column="44"/>
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 static LocaleSet getDefault() {"
21678 errorLine2=" ~~~~~~~~~">
21679 <location
21680 file="src/org/lineageos/eleven/locale/LocaleSet.java"
21681 line="80"
21682 column="19"/>
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 LocaleSet(Locale locale) {"
21689 errorLine2=" ~~~~~~">
21690 <location
21691 file="src/org/lineageos/eleven/locale/LocaleSet.java"
21692 line="84"
21693 column="22"/>
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 static LocaleSet getLocaleSet(String localeString) {"
21700 errorLine2=" ~~~~~~~~~">
21701 <location
21702 file="src/org/lineageos/eleven/locale/LocaleSet.java"
21703 line="99"
21704 column="19"/>
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 static LocaleSet getLocaleSet(String localeString) {"
21711 errorLine2=" ~~~~~~">
21712 <location
21713 file="src/org/lineageos/eleven/locale/LocaleSet.java"
21714 line="99"
21715 column="42"/>
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 LocaleSet(Locale primaryLocale, Locale secondaryLocale) {"
21722 errorLine2=" ~~~~~~">
21723 <location
21724 file="src/org/lineageos/eleven/locale/LocaleSet.java"
21725 line="123"
21726 column="22"/>
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 LocaleSet(Locale primaryLocale, Locale secondaryLocale) {"
21733 errorLine2=" ~~~~~~">
21734 <location
21735 file="src/org/lineageos/eleven/locale/LocaleSet.java"
21736 line="123"
21737 column="44"/>
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 normalize() {"
21744 errorLine2=" ~~~~~~~~~">
21745 <location
21746 file="src/org/lineageos/eleven/locale/LocaleSet.java"
21747 line="130"
21748 column="12"/>
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 Locale getPrimaryLocale() {"
21755 errorLine2=" ~~~~~~">
21756 <location
21757 file="src/org/lineageos/eleven/locale/LocaleSet.java"
21758 line="154"
21759 column="12"/>
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 Locale getSecondaryLocale() {"
21766 errorLine2=" ~~~~~~">
21767 <location
21768 file="src/org/lineageos/eleven/locale/LocaleSet.java"
21769 line="158"
21770 column="12"/>
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 boolean isPrimaryLocale(Locale locale) {"
21777 errorLine2=" ~~~~~~">
21778 <location
21779 file="src/org/lineageos/eleven/locale/LocaleSet.java"
21780 line="162"
21781 column="36"/>
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 boolean isSecondaryLocale(Locale locale) {"
21788 errorLine2=" ~~~~~~">
21789 <location
21790 file="src/org/lineageos/eleven/locale/LocaleSet.java"
21791 line="166"
21792 column="38"/>
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 boolean isPrimaryLanguage(String language) {"
21799 errorLine2=" ~~~~~~">
21800 <location
21801 file="src/org/lineageos/eleven/locale/LocaleSet.java"
21802 line="178"
21803 column="38"/>
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 boolean isSecondaryLanguage(String language) {"
21810 errorLine2=" ~~~~~~">
21811 <location
21812 file="src/org/lineageos/eleven/locale/LocaleSet.java"
21813 line="182"
21814 column="40"/>
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 LocaleSetManager(final Context context) {"
21821 errorLine2=" ~~~~~~~">
21822 <location
21823 file="src/org/lineageos/eleven/locale/LocaleSetManager.java"
21824 line="37"
21825 column="35"/>
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 void updateLocaleSet(LocaleSet localeSet) {"
21832 errorLine2=" ~~~~~~~~~">
21833 <location
21834 file="src/org/lineageos/eleven/locale/LocaleSetManager.java"
21835 line="76"
21836 column="33"/>
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 LocaleSet getSystemLocaleSet() {"
21843 errorLine2=" ~~~~~~~~~">
21844 <location
21845 file="src/org/lineageos/eleven/locale/LocaleSetManager.java"
21846 line="108"
21847 column="12"/>
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 LocaleSet getStoredLocaleSet() {"
21854 errorLine2=" ~~~~~~~~~">
21855 <location
21856 file="src/org/lineageos/eleven/locale/LocaleSetManager.java"
21857 line="116"
21858 column="12"/>
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=" protected Locale getLocale() {"
21865 errorLine2=" ~~~~~~">
21866 <location
21867 file="src/org/lineageos/eleven/locale/LocaleSetManager.java"
21868 line="128"
21869 column="15"/>
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 boolean isLocale(LocaleSet locales) {"
21876 errorLine2=" ~~~~~~~~~">
21877 <location
21878 file="src/org/lineageos/eleven/locale/LocaleUtils.java"
21879 line="195"
21880 column="29"/>
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 static synchronized LocaleUtils getInstance() {"
21887 errorLine2=" ~~~~~~~~~~~">
21888 <location
21889 file="src/org/lineageos/eleven/locale/LocaleUtils.java"
21890 line="199"
21891 column="32"/>
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 static synchronized void setLocales(LocaleSet locales) {"
21898 errorLine2=" ~~~~~~~~~">
21899 <location
21900 file="src/org/lineageos/eleven/locale/LocaleUtils.java"
21901 line="206"
21902 column="48"/>
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 int getBucketIndex(String name) {"
21909 errorLine2=" ~~~~~~">
21910 <location
21911 file="src/org/lineageos/eleven/locale/LocaleUtils.java"
21912 line="212"
21913 column="31"/>
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=" public String getBucketLabel(int bucketIndex) {"
21920 errorLine2=" ~~~~~~">
21921 <location
21922 file="src/org/lineageos/eleven/locale/LocaleUtils.java"
21923 line="216"
21924 column="12"/>
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 String getLabel(String name) {"
21931 errorLine2=" ~~~~~~">
21932 <location
21933 file="src/org/lineageos/eleven/locale/LocaleUtils.java"
21934 line="220"
21935 column="12"/>
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 String getLabel(String name) {"
21942 errorLine2=" ~~~~~~">
21943 <location
21944 file="src/org/lineageos/eleven/locale/LocaleUtils.java"
21945 line="220"
21946 column="28"/>
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 ArrayList&lt;String> getLabels() {"
21953 errorLine2=" ~~~~~~~~~~~~~~~~~">
21954 <location
21955 file="src/org/lineageos/eleven/locale/LocaleUtils.java"
21956 line="224"
21957 column="12"/>
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 static synchronized LocalizedStore getInstance(final Context context) {"
21964 errorLine2=" ~~~~~~~~~~~~~~">
21965 <location
21966 file="src/org/lineageos/eleven/provider/LocalizedStore.java"
21967 line="80"
21968 column="32"/>
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 static synchronized LocalizedStore getInstance(final Context context) {"
21975 errorLine2=" ~~~~~~~">
21976 <location
21977 file="src/org/lineageos/eleven/provider/LocalizedStore.java"
21978 line="80"
21979 column="65"/>
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 void onCreate(final SQLiteDatabase db) {"
21986 errorLine2=" ~~~~~~~~~~~~~~">
21987 <location
21988 file="src/org/lineageos/eleven/provider/LocalizedStore.java"
21989 line="108"
21990 column="32"/>
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 void onUpgrade(final SQLiteDatabase db, final int oldVersion) {"
21997 errorLine2=" ~~~~~~~~~~~~~~">
21998 <location
21999 file="src/org/lineageos/eleven/provider/LocalizedStore.java"
22000 line="140"
22001 column="33"/>
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 void onDowngrade(SQLiteDatabase db) {"
22008 errorLine2=" ~~~~~~~~~~~~~~">
22009 <location
22010 file="src/org/lineageos/eleven/provider/LocalizedStore.java"
22011 line="150"
22012 column="29"/>
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 SortData getSortOrder(SortParameter itemType, SortParameter sortType,"
22019 errorLine2=" ~~~~~~~~">
22020 <location
22021 file="src/org/lineageos/eleven/provider/LocalizedStore.java"
22022 line="345"
22023 column="12"/>
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 SortData getSortOrder(SortParameter itemType, SortParameter sortType,"
22030 errorLine2=" ~~~~~~~~~~~~~">
22031 <location
22032 file="src/org/lineageos/eleven/provider/LocalizedStore.java"
22033 line="345"
22034 column="34"/>
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 SortData getSortOrder(SortParameter itemType, SortParameter sortType,"
22041 errorLine2=" ~~~~~~~~~~~~~">
22042 <location
22043 file="src/org/lineageos/eleven/provider/LocalizedStore.java"
22044 line="345"
22045 column="58"/>
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 Cursor getLocalizedSort(Cursor cursor, String columnName, SortParameter idType,"
22052 errorLine2=" ~~~~~~">
22053 <location
22054 file="src/org/lineageos/eleven/provider/LocalizedStore.java"
22055 line="429"
22056 column="12"/>
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 Cursor getLocalizedSort(Cursor cursor, String columnName, SortParameter idType,"
22063 errorLine2=" ~~~~~~">
22064 <location
22065 file="src/org/lineageos/eleven/provider/LocalizedStore.java"
22066 line="429"
22067 column="36"/>
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 Cursor getLocalizedSort(Cursor cursor, String columnName, SortParameter idType,"
22074 errorLine2=" ~~~~~~">
22075 <location
22076 file="src/org/lineageos/eleven/provider/LocalizedStore.java"
22077 line="429"
22078 column="51"/>
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 Cursor getLocalizedSort(Cursor cursor, String columnName, SortParameter idType,"
22085 errorLine2=" ~~~~~~~~~~~~~">
22086 <location
22087 file="src/org/lineageos/eleven/provider/LocalizedStore.java"
22088 line="429"
22089 column="70"/>
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=" SortParameter sortType, boolean descending, boolean update) {"
22096 errorLine2=" ~~~~~~~~~~~~~">
22097 <location
22098 file="src/org/lineageos/eleven/provider/LocalizedStore.java"
22099 line="430"
22100 column="36"/>
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 static void logd(String tag, String msg) throws IllegalArgumentException {"
22107 errorLine2=" ~~~~~~">
22108 <location
22109 file="src/org/lineageos/eleven/ui/activities/preview/util/Logger.java"
22110 line="41"
22111 column="29"/>
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 static void logd(String tag, String msg) throws IllegalArgumentException {"
22118 errorLine2=" ~~~~~~">
22119 <location
22120 file="src/org/lineageos/eleven/ui/activities/preview/util/Logger.java"
22121 line="41"
22122 column="41"/>
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 static void loge(String tag, String msg) throws IllegalArgumentException {"
22129 errorLine2=" ~~~~~~">
22130 <location
22131 file="src/org/lineageos/eleven/ui/activities/preview/util/Logger.java"
22132 line="59"
22133 column="29"/>
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 static void loge(String tag, String msg) throws IllegalArgumentException {"
22140 errorLine2=" ~~~~~~">
22141 <location
22142 file="src/org/lineageos/eleven/ui/activities/preview/util/Logger.java"
22143 line="59"
22144 column="41"/>
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=" public void onReceive(final Context context, final Intent intent) {"
22151 errorLine2=" ~~~~~~~">
22152 <location
22153 file="src/org/lineageos/eleven/MediaButtonIntentReceiver.java"
22154 line="46"
22155 column="33"/>
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 void onReceive(final Context context, final Intent intent) {"
22162 errorLine2=" ~~~~~~">
22163 <location
22164 file="src/org/lineageos/eleven/MediaButtonIntentReceiver.java"
22165 line="46"
22166 column="56"/>
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 LoaderManager getContainingLoaderManager() {"
22173 errorLine2=" ~~~~~~~~~~~~~">
22174 <location
22175 file="src/org/lineageos/eleven/ui/fragments/phone/MusicBrowserFragment.java"
22176 line="31"
22177 column="12"/>
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=" protected void initLoader(LoaderManager.LoaderCallbacks&lt;?> callback) {"
22184 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
22185 <location
22186 file="src/org/lineageos/eleven/ui/fragments/phone/MusicBrowserFragment.java"
22187 line="36"
22188 column="31"/>
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=" protected void restartLoader(LoaderManager.LoaderCallbacks&lt;?> callback) {"
22195 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
22196 <location
22197 file="src/org/lineageos/eleven/ui/fragments/phone/MusicBrowserFragment.java"
22198 line="40"
22199 column="34"/>
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=" protected String getTitle() {"
22206 errorLine2=" ~~~~~~">
22207 <location
22208 file="src/org/lineageos/eleven/ui/fragments/phone/MusicBrowserPhoneFragment.java"
22209 line="85"
22210 column="15"/>
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 onCreate(final Bundle savedInstanceState) {"
22217 errorLine2=" ~~~~~~">
22218 <location
22219 file="src/org/lineageos/eleven/ui/fragments/phone/MusicBrowserPhoneFragment.java"
22220 line="90"
22221 column="32"/>
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 boolean onOptionsItemSelected(final MenuItem item) {"
22228 errorLine2=" ~~~~~~~~">
22229 <location
22230 file="src/org/lineageos/eleven/ui/fragments/phone/MusicBrowserPhoneFragment.java"
22231 line="174"
22232 column="48"/>
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=" public ArtistFragment getArtistFragment() {"
22239 errorLine2=" ~~~~~~~~~~~~~~">
22240 <location
22241 file="src/org/lineageos/eleven/ui/fragments/phone/MusicBrowserPhoneFragment.java"
22242 line="268"
22243 column="12"/>
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=" public AlbumFragment getAlbumFragment() {"
22250 errorLine2=" ~~~~~~~~~~~~~">
22251 <location
22252 file="src/org/lineageos/eleven/ui/fragments/phone/MusicBrowserPhoneFragment.java"
22253 line="276"
22254 column="12"/>
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=" public SongFragment getSongFragment() {"
22261 errorLine2=" ~~~~~~~~~~~~">
22262 <location
22263 file="src/org/lineageos/eleven/ui/fragments/phone/MusicBrowserPhoneFragment.java"
22264 line="284"
22265 column="12"/>
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 static synchronized MusicDB getInstance(final Context context) {"
22272 errorLine2=" ~~~~~~~">
22273 <location
22274 file="src/org/lineageos/eleven/provider/MusicDB.java"
22275 line="52"
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 static synchronized MusicDB getInstance(final Context context) {"
22283 errorLine2=" ~~~~~~~">
22284 <location
22285 file="src/org/lineageos/eleven/provider/MusicDB.java"
22286 line="52"
22287 column="58"/>
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 MusicDB(final Context context) {"
22294 errorLine2=" ~~~~~~~">
22295 <location
22296 file="src/org/lineageos/eleven/provider/MusicDB.java"
22297 line="59"
22298 column="26"/>
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 void onCreate(SQLiteDatabase db) {"
22305 errorLine2=" ~~~~~~~~~~~~~~">
22306 <location
22307 file="src/org/lineageos/eleven/provider/MusicDB.java"
22308 line="65"
22309 column="26"/>
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 void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {"
22316 errorLine2=" ~~~~~~~~~~~~~~">
22317 <location
22318 file="src/org/lineageos/eleven/provider/MusicDB.java"
22319 line="75"
22320 column="27"/>
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 void onDowngrade(SQLiteDatabase db, int oldVersion, int newVersion) {"
22327 errorLine2=" ~~~~~~~~~~~~~~">
22328 <location
22329 file="src/org/lineageos/eleven/provider/MusicDB.java"
22330 line="82"
22331 column="29"/>
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 MusicHolder(final View view) {"
22338 errorLine2=" ~~~~">
22339 <location
22340 file="src/org/lineageos/eleven/ui/MusicHolder.java"
22341 line="96"
22342 column="30"/>
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 String lineOne;"
22349 errorLine2=" ~~~~~~">
22350 <location
22351 file="src/org/lineageos/eleven/ui/MusicHolder.java"
22352 line="140"
22353 column="16"/>
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 String lineOneRight;"
22360 errorLine2=" ~~~~~~">
22361 <location
22362 file="src/org/lineageos/eleven/ui/MusicHolder.java"
22363 line="147"
22364 column="16"/>
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 String lineTwo;"
22371 errorLine2=" ~~~~~~">
22372 <location
22373 file="src/org/lineageos/eleven/ui/MusicHolder.java"
22374 line="154"
22375 column="16"/>
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 IBinder onBind(final Intent intent) {"
22382 errorLine2=" ~~~~~~~">
22383 <location
22384 file="src/org/lineageos/eleven/MusicPlaybackService.java"
22385 line="554"
22386 column="12"/>
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 IBinder onBind(final Intent intent) {"
22393 errorLine2=" ~~~~~~">
22394 <location
22395 file="src/org/lineageos/eleven/MusicPlaybackService.java"
22396 line="554"
22397 column="33"/>
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 boolean onUnbind(final Intent intent) {"
22404 errorLine2=" ~~~~~~">
22405 <location
22406 file="src/org/lineageos/eleven/MusicPlaybackService.java"
22407 line="561"
22408 column="35"/>
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 void onRebind(final Intent intent) {"
22415 errorLine2=" ~~~~~~">
22416 <location
22417 file="src/org/lineageos/eleven/MusicPlaybackService.java"
22418 line="586"
22419 column="32"/>
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 int onStartCommand(final Intent intent, final int flags, final int startId) {"
22426 errorLine2=" ~~~~~~">
22427 <location
22428 file="src/org/lineageos/eleven/MusicPlaybackService.java"
22429 line="805"
22430 column="37"/>
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 boolean openFile(final String path) {"
22437 errorLine2=" ~~~~~~">
22438 <location
22439 file="src/org/lineageos/eleven/MusicPlaybackService.java"
22440 line="1768"
22441 column="35"/>
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 int[] getQueueHistoryList() {"
22448 errorLine2=" ~~~~~">
22449 <location
22450 file="src/org/lineageos/eleven/MusicPlaybackService.java"
22451 line="2044"
22452 column="12"/>
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 String getPath() {"
22459 errorLine2=" ~~~~~~">
22460 <location
22461 file="src/org/lineageos/eleven/MusicPlaybackService.java"
22462 line="2060"
22463 column="12"/>
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 String getAlbumName() {"
22470 errorLine2=" ~~~~~~">
22471 <location
22472 file="src/org/lineageos/eleven/MusicPlaybackService.java"
22473 line="2074"
22474 column="12"/>
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 String getTrackName() {"
22481 errorLine2=" ~~~~~~">
22482 <location
22483 file="src/org/lineageos/eleven/MusicPlaybackService.java"
22484 line="2088"
22485 column="12"/>
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 String getGenreName() {"
22492 errorLine2=" ~~~~~~">
22493 <location
22494 file="src/org/lineageos/eleven/MusicPlaybackService.java"
22495 line="2102"
22496 column="12"/>
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 String getArtistName() {"
22503 errorLine2=" ~~~~~~">
22504 <location
22505 file="src/org/lineageos/eleven/MusicPlaybackService.java"
22506 line="2131"
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 getAlbumArtistName() {"
22514 errorLine2=" ~~~~~~">
22515 <location
22516 file="src/org/lineageos/eleven/MusicPlaybackService.java"
22517 line="2145"
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 MusicPlaybackTrack getCurrentTrack() {"
22525 errorLine2=" ~~~~~~~~~~~~~~~~~~">
22526 <location
22527 file="src/org/lineageos/eleven/MusicPlaybackService.java"
22528 line="2197"
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 synchronized MusicPlaybackTrack getTrack(int index) {"
22536 errorLine2=" ~~~~~~~~~~~~~~~~~~">
22537 <location
22538 file="src/org/lineageos/eleven/MusicPlaybackService.java"
22539 line="2207"
22540 column="25"/>
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 long[] getQueue() {"
22547 errorLine2=" ~~~~~~">
22548 <location
22549 file="src/org/lineageos/eleven/MusicPlaybackService.java"
22550 line="2322"
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 void open(final long[] list, final int position, long sourceId, IdType sourceType) {"
22558 errorLine2=" ~~~~~~">
22559 <location
22560 file="src/org/lineageos/eleven/MusicPlaybackService.java"
22561 line="2406"
22562 column="28"/>
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 void open(final long[] list, final int position, long sourceId, IdType sourceType) {"
22569 errorLine2=" ~~~~~~">
22570 <location
22571 file="src/org/lineageos/eleven/MusicPlaybackService.java"
22572 line="2406"
22573 column="76"/>
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 void enqueue(final long[] list, final int action, long sourceId, IdType sourceType) {"
22580 errorLine2=" ~~~~~~">
22581 <location
22582 file="src/org/lineageos/eleven/MusicPlaybackService.java"
22583 line="2777"
22584 column="31"/>
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 void enqueue(final long[] list, final int action, long sourceId, IdType sourceType) {"
22591 errorLine2=" ~~~~~~">
22592 <location
22593 file="src/org/lineageos/eleven/MusicPlaybackService.java"
22594 line="2777"
22595 column="77"/>
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 BitmapWithColors getAlbumArt(boolean smallBitmap) {"
22602 errorLine2=" ~~~~~~~~~~~~~~~~">
22603 <location
22604 file="src/org/lineageos/eleven/MusicPlaybackService.java"
22605 line="2830"
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 MusicPlaybackState(final Context context) {"
22613 errorLine2=" ~~~~~~~">
22614 <location
22615 file="src/org/lineageos/eleven/provider/MusicPlaybackState.java"
22616 line="45"
22617 column="37"/>
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 onCreate(final SQLiteDatabase db) {"
22624 errorLine2=" ~~~~~~~~~~~~~~">
22625 <location
22626 file="src/org/lineageos/eleven/provider/MusicPlaybackState.java"
22627 line="49"
22628 column="32"/>
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 onUpgrade(final SQLiteDatabase db, final int oldVersion, final int newVersion) {"
22635 errorLine2=" ~~~~~~~~~~~~~~">
22636 <location
22637 file="src/org/lineageos/eleven/provider/MusicPlaybackState.java"
22638 line="80"
22639 column="33"/>
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 onDowngrade(SQLiteDatabase db) {"
22646 errorLine2=" ~~~~~~~~~~~~~~">
22647 <location
22648 file="src/org/lineageos/eleven/provider/MusicPlaybackState.java"
22649 line="87"
22650 column="29"/>
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 static synchronized MusicPlaybackState getInstance(final Context context) {"
22657 errorLine2=" ~~~~~~~~~~~~~~~~~~">
22658 <location
22659 file="src/org/lineageos/eleven/provider/MusicPlaybackState.java"
22660 line="98"
22661 column="32"/>
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 static synchronized MusicPlaybackState getInstance(final Context context) {"
22668 errorLine2=" ~~~~~~~">
22669 <location
22670 file="src/org/lineageos/eleven/provider/MusicPlaybackState.java"
22671 line="98"
22672 column="69"/>
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 synchronized void saveState(final ArrayList&lt;MusicPlaybackTrack> queue,"
22679 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
22680 <location
22681 file="src/org/lineageos/eleven/provider/MusicPlaybackState.java"
22682 line="112"
22683 column="46"/>
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=" LinkedList&lt;Integer> history) {"
22690 errorLine2=" ~~~~~~~~~~~~~~~~~~~">
22691 <location
22692 file="src/org/lineageos/eleven/provider/MusicPlaybackState.java"
22693 line="113"
22694 column="40"/>
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 ArrayList&lt;MusicPlaybackTrack> getQueue() {"
22701 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
22702 <location
22703 file="src/org/lineageos/eleven/provider/MusicPlaybackState.java"
22704 line="168"
22705 column="12"/>
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 LinkedList&lt;Integer> getHistory(final int playlistSize) {"
22712 errorLine2=" ~~~~~~~~~~~~~~~~~~~">
22713 <location
22714 file="src/org/lineageos/eleven/provider/MusicPlaybackState.java"
22715 line="186"
22716 column="12"/>
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 MusicPlaybackTrack(long id, long sourceId, Config.IdType type, int sourcePosition) {"
22723 errorLine2=" ~~~~~~~~~~~~~">
22724 <location
22725 file="src/org/lineageos/eleven/service/MusicPlaybackTrack.java"
22726 line="67"
22727 column="55"/>
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 MusicPlaybackTrack(Parcel in) {"
22734 errorLine2=" ~~~~~~">
22735 <location
22736 file="src/org/lineageos/eleven/service/MusicPlaybackTrack.java"
22737 line="74"
22738 column="31"/>
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=" public void writeToParcel(Parcel dest, int flags) {"
22745 errorLine2=" ~~~~~~">
22746 <location
22747 file="src/org/lineageos/eleven/service/MusicPlaybackTrack.java"
22748 line="87"
22749 column="31"/>
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 static ServiceToken bindToService(final Context context,"
22756 errorLine2=" ~~~~~~~~~~~~">
22757 <location
22758 file="src/org/lineageos/eleven/utils/MusicUtils.java"
22759 line="113"
22760 column="19"/>
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 static ServiceToken bindToService(final Context context,"
22767 errorLine2=" ~~~~~~~">
22768 <location
22769 file="src/org/lineageos/eleven/utils/MusicUtils.java"
22770 line="113"
22771 column="52"/>
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=" final ServiceConnection callback) {"
22778 errorLine2=" ~~~~~~~~~~~~~~~~~">
22779 <location
22780 file="src/org/lineageos/eleven/utils/MusicUtils.java"
22781 line="114"
22782 column="52"/>
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 static void unbindFromService(final ServiceToken token) {"
22789 errorLine2=" ~~~~~~~~~~~~">
22790 <location
22791 file="src/org/lineageos/eleven/utils/MusicUtils.java"
22792 line="129"
22793 column="48"/>
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 ServiceBinder(final ServiceConnection callback) {"
22800 errorLine2=" ~~~~~~~~~~~~~~~~~">
22801 <location
22802 file="src/org/lineageos/eleven/utils/MusicUtils.java"
22803 line="155"
22804 column="36"/>
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 void onServiceConnected(final ComponentName className, final IBinder service) {"
22811 errorLine2=" ~~~~~~~~~~~~~">
22812 <location
22813 file="src/org/lineageos/eleven/utils/MusicUtils.java"
22814 line="160"
22815 column="46"/>
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 void onServiceConnected(final ComponentName className, final IBinder service) {"
22822 errorLine2=" ~~~~~~~">
22823 <location
22824 file="src/org/lineageos/eleven/utils/MusicUtils.java"
22825 line="160"
22826 column="77"/>
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=" public void onServiceDisconnected(final ComponentName className) {"
22833 errorLine2=" ~~~~~~~~~~~~~">
22834 <location
22835 file="src/org/lineageos/eleven/utils/MusicUtils.java"
22836 line="168"
22837 column="49"/>
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 String makeLabel(final Context context, final int pluralInt,"
22844 errorLine2=" ~~~~~~">
22845 <location
22846 file="src/org/lineageos/eleven/utils/MusicUtils.java"
22847 line="224"
22848 column="19"/>
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 static String makeLabel(final Context context, final int pluralInt,"
22855 errorLine2=" ~~~~~~~">
22856 <location
22857 file="src/org/lineageos/eleven/utils/MusicUtils.java"
22858 line="224"
22859 column="42"/>
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 static String makeShortTimeString(final Context context, long secs) {"
22866 errorLine2=" ~~~~~~~">
22867 <location
22868 file="src/org/lineageos/eleven/utils/MusicUtils.java"
22869 line="237"
22870 column="52"/>
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 static String makeLongTimeString(final Context context, long secs) {"
22877 errorLine2=" ~~~~~~">
22878 <location
22879 file="src/org/lineageos/eleven/utils/MusicUtils.java"
22880 line="257"
22881 column="19"/>
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 static String makeLongTimeString(final Context context, long secs) {"
22888 errorLine2=" ~~~~~~~">
22889 <location
22890 file="src/org/lineageos/eleven/utils/MusicUtils.java"
22891 line="257"
22892 column="51"/>
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 makeCombinedString(final Context context, final String first,"
22899 errorLine2=" ~~~~~~">
22900 <location
22901 file="src/org/lineageos/eleven/utils/MusicUtils.java"
22902 line="285"
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 makeCombinedString(final Context context, final String first,"
22910 errorLine2=" ~~~~~~~">
22911 <location
22912 file="src/org/lineageos/eleven/utils/MusicUtils.java"
22913 line="285"
22914 column="51"/>
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 makeCombinedString(final Context context, final String first,"
22921 errorLine2=" ~~~~~~">
22922 <location
22923 file="src/org/lineageos/eleven/utils/MusicUtils.java"
22924 line="285"
22925 column="74"/>
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=" final String second) {"
22932 errorLine2=" ~~~~~~">
22933 <location
22934 file="src/org/lineageos/eleven/utils/MusicUtils.java"
22935 line="286"
22936 column="51"/>
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 void asyncNext(final Context context) {"
22943 errorLine2=" ~~~~~~~">
22944 <location
22945 file="src/org/lineageos/eleven/utils/MusicUtils.java"
22946 line="308"
22947 column="40"/>
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 void previous(final Context context, final boolean force) {"
22954 errorLine2=" ~~~~~~~">
22955 <location
22956 file="src/org/lineageos/eleven/utils/MusicUtils.java"
22957 line="328"
22958 column="39"/>
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 getTrackName() {"
22965 errorLine2=" ~~~~~~">
22966 <location
22967 file="src/org/lineageos/eleven/utils/MusicUtils.java"
22968 line="454"
22969 column="19"/>
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 getArtistName() {"
22976 errorLine2=" ~~~~~~">
22977 <location
22978 file="src/org/lineageos/eleven/utils/MusicUtils.java"
22979 line="469"
22980 column="19"/>
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=" public static String getAlbumName() {"
22987 errorLine2=" ~~~~~~">
22988 <location
22989 file="src/org/lineageos/eleven/utils/MusicUtils.java"
22990 line="484"
22991 column="19"/>
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 MusicPlaybackTrack getCurrentTrack() {"
22998 errorLine2=" ~~~~~~~~~~~~~~~~~~">
22999 <location
23000 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23001 line="529"
23002 column="19"/>
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 MusicPlaybackTrack getTrack(int index) {"
23009 errorLine2=" ~~~~~~~~~~~~~~~~~~">
23010 <location
23011 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23012 line="544"
23013 column="19"/>
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 long[] getQueue() {"
23020 errorLine2=" ~~~~~~">
23021 <location
23022 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23023 line="589"
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 long[] getSongListForCursor(Cursor cursor) {"
23031 errorLine2=" ~~~~~~">
23032 <location
23033 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23034 line="715"
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 long[] getSongListForCursor(Cursor cursor) {"
23042 errorLine2=" ~~~~~~">
23043 <location
23044 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23045 line="715"
23046 column="47"/>
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 long[] getSongListForArtist(final Context context, final long id) {"
23053 errorLine2=" ~~~~~~">
23054 <location
23055 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23056 line="744"
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 long[] getSongListForArtist(final Context context, final long id) {"
23064 errorLine2=" ~~~~~~~">
23065 <location
23066 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23067 line="744"
23068 column="53"/>
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[] getSongListForAlbum(final Context context, final long id) {"
23075 errorLine2=" ~~~~~~">
23076 <location
23077 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23078 line="760"
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[] getSongListForAlbum(final Context context, final long id) {"
23086 errorLine2=" ~~~~~~~">
23087 <location
23088 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23089 line="760"
23090 column="52"/>
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 void playArtist(final Context context, final long artistId, int position,"
23097 errorLine2=" ~~~~~~~">
23098 <location
23099 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23100 line="776"
23101 column="41"/>
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 void playAll(final Context context, final long[] list, int position,"
23108 errorLine2=" ~~~~~~~">
23109 <location
23110 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23111 line="790"
23112 column="38"/>
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 void playAll(final Context context, final long[] list, int position,"
23119 errorLine2=" ~~~~~~">
23120 <location
23121 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23122 line="790"
23123 column="61"/>
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=" final long sourceId, final IdType sourceType,"
23130 errorLine2=" ~~~~~~">
23131 <location
23132 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23133 line="791"
23134 column="59"/>
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 void playNext(final long[] list, final long sourceId, final IdType sourceType) {"
23141 errorLine2=" ~~~~~~">
23142 <location
23143 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23144 line="814"
23145 column="39"/>
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 playNext(final long[] list, final long sourceId, final IdType sourceType) {"
23152 errorLine2=" ~~~~~~">
23153 <location
23154 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23155 line="814"
23156 column="79"/>
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 shuffleAll(final Context context) {"
23163 errorLine2=" ~~~~~~~">
23164 <location
23165 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23166 line="830"
23167 column="41"/>
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 long getIdForPlaylist(final Context context, final String name) {"
23174 errorLine2=" ~~~~~~~">
23175 <location
23176 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23177 line="867"
23178 column="47"/>
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=" public static long getIdForPlaylist(final Context context, final String name) {"
23185 errorLine2=" ~~~~~~">
23186 <location
23187 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23188 line="867"
23189 column="70"/>
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 String getNameForPlaylist(final Context context, final long id) {"
23196 errorLine2=" ~~~~~~">
23197 <location
23198 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23199 line="893"
23200 column="19"/>
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 String getNameForPlaylist(final Context context, final long id) {"
23207 errorLine2=" ~~~~~~~">
23208 <location
23209 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23210 line="893"
23211 column="51"/>
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 long getIdForArtist(final Context context, final String name) {"
23218 errorLine2=" ~~~~~~~">
23219 <location
23220 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23221 line="914"
23222 column="45"/>
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 getIdForArtist(final Context context, final String name) {"
23229 errorLine2=" ~~~~~~">
23230 <location
23231 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23232 line="914"
23233 column="68"/>
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 void playAlbum(final Context context, final long albumId, int position,"
23240 errorLine2=" ~~~~~~~">
23241 <location
23242 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23243 line="938"
23244 column="40"/>
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 void makeInsertItems(final long[] ids, final int offset, int len,"
23251 errorLine2=" ~~~~~~">
23252 <location
23253 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23254 line="946"
23255 column="46"/>
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 long createPlaylist(final Context context, final String name) {"
23262 errorLine2=" ~~~~~~~">
23263 <location
23264 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23265 line="969"
23266 column="45"/>
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 createPlaylist(final Context context, final String name) {"
23273 errorLine2=" ~~~~~~">
23274 <location
23275 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23276 line="969"
23277 column="68"/>
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 void clearPlaylist(final Context context, final int playlistId) {"
23284 errorLine2=" ~~~~~~~">
23285 <location
23286 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23287 line="999"
23288 column="44"/>
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 clearTopTracks(Context context) {"
23295 errorLine2=" ~~~~~~~">
23296 <location
23297 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23298 line="1007"
23299 column="39"/>
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 clearRecent(Context context) {"
23306 errorLine2=" ~~~~~~~">
23307 <location
23308 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23309 line="1014"
23310 column="36"/>
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 void clearLastAdded(Context context) {"
23317 errorLine2=" ~~~~~~~">
23318 <location
23319 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23320 line="1021"
23321 column="39"/>
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 void addToPlaylist(final Context context, final long[] ids,"
23328 errorLine2=" ~~~~~~~">
23329 <location
23330 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23331 line="1031"
23332 column="44"/>
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 addToPlaylist(final Context context, final long[] ids,"
23339 errorLine2=" ~~~~~~">
23340 <location
23341 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23342 line="1031"
23343 column="67"/>
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 removeFromPlaylist(final Context context, final long id,"
23350 errorLine2=" ~~~~~~~">
23351 <location
23352 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23353 line="1065"
23354 column="49"/>
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 addToQueue(final Context context, final long[] list, long sourceId,"
23361 errorLine2=" ~~~~~~~">
23362 <location
23363 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23364 line="1082"
23365 column="41"/>
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 addToQueue(final Context context, final long[] list, long sourceId,"
23372 errorLine2=" ~~~~~~">
23373 <location
23374 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23375 line="1082"
23376 column="64"/>
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=" IdType sourceType) {"
23383 errorLine2=" ~~~~~~">
23384 <location
23385 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23386 line="1083"
23387 column="35"/>
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 setRingtone(final Context context, final long id) {"
23394 errorLine2=" ~~~~~~~">
23395 <location
23396 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23397 line="1101"
23398 column="42"/>
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 int getSongCountForAlbumInt(final Context context, final long id) {"
23405 errorLine2=" ~~~~~~~">
23406 <location
23407 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23408 line="1135"
23409 column="53"/>
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 int getSongCountForPlaylist(final Context context, final long playlistId) {"
23416 errorLine2=" ~~~~~~~">
23417 <location
23418 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23419 line="1164"
23420 column="53"/>
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 AlbumArtistDetails getAlbumArtDetails(final Context context, final long trackId) {"
23427 errorLine2=" ~~~~~~~~~~~~~~~~~~">
23428 <location
23429 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23430 line="1179"
23431 column="19"/>
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=" public static AlbumArtistDetails getAlbumArtDetails(final Context context, final long trackId) {"
23438 errorLine2=" ~~~~~~~">
23439 <location
23440 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23441 line="1179"
23442 column="63"/>
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 String getReleaseDateForAlbum(final Context context, final long id) {"
23449 errorLine2=" ~~~~~~">
23450 <location
23451 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23452 line="1220"
23453 column="19"/>
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 String getReleaseDateForAlbum(final Context context, final long id) {"
23460 errorLine2=" ~~~~~~~">
23461 <location
23462 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23463 line="1220"
23464 column="55"/>
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 long[] getSongListForPlaylist(final Context context, final long playlistId) {"
23471 errorLine2=" ~~~~~~">
23472 <location
23473 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23474 line="1258"
23475 column="19"/>
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 long[] getSongListForPlaylist(final Context context, final long playlistId) {"
23482 errorLine2=" ~~~~~~~">
23483 <location
23484 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23485 line="1258"
23486 column="55"/>
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 void playPlaylist(final Context context, final long playlistId, boolean shuffle) {"
23493 errorLine2=" ~~~~~~~">
23494 <location
23495 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23496 line="1273"
23497 column="43"/>
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 long[] getSongListForSmartPlaylist(final Context context,"
23504 errorLine2=" ~~~~~~">
23505 <location
23506 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23507 line="1285"
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 long[] getSongListForSmartPlaylist(final Context context,"
23515 errorLine2=" ~~~~~~~">
23516 <location
23517 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23518 line="1285"
23519 column="60"/>
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=" final SmartPlaylistType type) {"
23526 errorLine2=" ~~~~~~~~~~~~~~~~~">
23527 <location
23528 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23529 line="1286"
23530 column="60"/>
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 List&lt;String> makePlaylist(final Context context) {"
23537 errorLine2=" ~~~~~~~~~~~~">
23538 <location
23539 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23540 line="1313"
23541 column="19"/>
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 List&lt;String> makePlaylist(final Context context) {"
23548 errorLine2=" ~~~~~~~">
23549 <location
23550 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23551 line="1313"
23552 column="51"/>
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 void deleteTracks(final Context context, final long[] list) {"
23559 errorLine2=" ~~~~~~~">
23560 <location
23561 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23562 line="1464"
23563 column="43"/>
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 void deleteTracks(final Context context, final long[] list) {"
23570 errorLine2=" ~~~~~~">
23571 <location
23572 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23573 line="1464"
23574 column="66"/>
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=" public static String getTrimmedName(String name) {"
23581 errorLine2=" ~~~~~~">
23582 <location
23583 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23584 line="1547"
23585 column="19"/>
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 String getTrimmedName(String name) {"
23592 errorLine2=" ~~~~~~">
23593 <location
23594 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23595 line="1547"
23596 column="41"/>
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 String getLocalizedBucketLetter(String name) {"
23603 errorLine2=" ~~~~~~">
23604 <location
23605 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23606 line="1580"
23607 column="19"/>
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 String getLocalizedBucketLetter(String name) {"
23614 errorLine2=" ~~~~~~">
23615 <location
23616 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23617 line="1580"
23618 column="51"/>
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 boolean isBlank(String s) {"
23625 errorLine2=" ~~~~~~">
23626 <location
23627 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23628 line="1597"
23629 column="35"/>
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 void removeFromCache(FragmentActivity activity, String key) {"
23636 errorLine2=" ~~~~~~~~~~~~~~~~">
23637 <location
23638 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23639 line="1617"
23640 column="40"/>
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 void removeFromCache(FragmentActivity activity, String key) {"
23647 errorLine2=" ~~~~~~">
23648 <location
23649 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23650 line="1617"
23651 column="67"/>
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 void selectOldPhoto(FragmentActivity activity, String key) {"
23658 errorLine2=" ~~~~~~~~~~~~~~~~">
23659 <location
23660 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23661 line="1629"
23662 column="39"/>
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 void selectOldPhoto(FragmentActivity activity, String key) {"
23669 errorLine2=" ~~~~~~">
23670 <location
23671 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23672 line="1629"
23673 column="66"/>
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 isSortOrderDesending(String sortOrder) {"
23680 errorLine2=" ~~~~~~">
23681 <location
23682 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23683 line="1639"
23684 column="48"/>
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 &lt;E> String buildCollectionAsString(Collection&lt;E> items) {"
23691 errorLine2=" ~~~~~~">
23692 <location
23693 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23694 line="1649"
23695 column="23"/>
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 &lt;E> String buildCollectionAsString(Collection&lt;E> items) {"
23702 errorLine2=" ~~~~~~~~~~~~~">
23703 <location
23704 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23705 line="1649"
23706 column="54"/>
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 int compare(String s1, String s2) {"
23713 errorLine2=" ~~~~~~">
23714 <location
23715 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23716 line="1665"
23717 column="28"/>
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 int compare(String s1, String s2) {"
23724 errorLine2=" ~~~~~~">
23725 <location
23726 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23727 line="1665"
23728 column="39"/>
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 void openArtistProfile(final Activity context, final String artistName) {"
23735 errorLine2=" ~~~~~~~~">
23736 <location
23737 file="src/org/lineageos/eleven/utils/NavUtils.java"
23738 line="47"
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 void openArtistProfile(final Activity context, final String artistName) {"
23746 errorLine2=" ~~~~~~">
23747 <location
23748 file="src/org/lineageos/eleven/utils/NavUtils.java"
23749 line="47"
23750 column="72"/>
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 void openAlbumProfile(final Activity context, final String albumName,"
23757 errorLine2=" ~~~~~~~~">
23758 <location
23759 file="src/org/lineageos/eleven/utils/NavUtils.java"
23760 line="69"
23761 column="47"/>
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 static void openAlbumProfile(final Activity context, final String albumName,"
23768 errorLine2=" ~~~~~~">
23769 <location
23770 file="src/org/lineageos/eleven/utils/NavUtils.java"
23771 line="69"
23772 column="71"/>
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=" final String artistName, final long albumId) {"
23779 errorLine2=" ~~~~~~">
23780 <location
23781 file="src/org/lineageos/eleven/utils/NavUtils.java"
23782 line="70"
23783 column="47"/>
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 openSmartPlaylist(final Activity context,"
23790 errorLine2=" ~~~~~~~~">
23791 <location
23792 file="src/org/lineageos/eleven/utils/NavUtils.java"
23793 line="87"
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=" final Config.SmartPlaylistType type) {"
23801 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~">
23802 <location
23803 file="src/org/lineageos/eleven/utils/NavUtils.java"
23804 line="88"
23805 column="48"/>
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 openPlaylist(final Activity context, final long playlistId,"
23812 errorLine2=" ~~~~~~~~">
23813 <location
23814 file="src/org/lineageos/eleven/utils/NavUtils.java"
23815 line="103"
23816 column="43"/>
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=" final String playlistName) {"
23823 errorLine2=" ~~~~~~">
23824 <location
23825 file="src/org/lineageos/eleven/utils/NavUtils.java"
23826 line="104"
23827 column="43"/>
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=" public static void openEffectsPanel(final Activity context, final int requestCode) {"
23834 errorLine2=" ~~~~~~~~">
23835 <location
23836 file="src/org/lineageos/eleven/utils/NavUtils.java"
23837 line="132"
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 boolean hasEffectsPanel(final Activity activity) {"
23845 errorLine2=" ~~~~~~~~">
23846 <location
23847 file="src/org/lineageos/eleven/utils/NavUtils.java"
23848 line="145"
23849 column="49"/>
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=" public static void openSettings(final Activity activity) {"
23856 errorLine2=" ~~~~~~~~">
23857 <location
23858 file="src/org/lineageos/eleven/utils/NavUtils.java"
23859 line="156"
23860 column="43"/>
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 goHome(final Activity activity, final int browseIndex) {"
23867 errorLine2=" ~~~~~~~~">
23868 <location
23869 file="src/org/lineageos/eleven/utils/NavUtils.java"
23870 line="166"
23871 column="37"/>
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=" public NoResultsContainer(Context context, AttributeSet attrs) {"
23878 errorLine2=" ~~~~~~~">
23879 <location
23880 file="src/org/lineageos/eleven/widgets/NoResultsContainer.java"
23881 line="35"
23882 column="31"/>
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 NoResultsContainer(Context context, AttributeSet attrs) {"
23889 errorLine2=" ~~~~~~~~~~~~">
23890 <location
23891 file="src/org/lineageos/eleven/widgets/NoResultsContainer.java"
23892 line="35"
23893 column="48"/>
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 NowPlayingCursor(final Context context) {"
23900 errorLine2=" ~~~~~~~">
23901 <location
23902 file="src/org/lineageos/eleven/loaders/NowPlayingCursor.java"
23903 line="72"
23904 column="35"/>
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 String getString(final int column) {"
23911 errorLine2=" ~~~~~~">
23912 <location
23913 file="src/org/lineageos/eleven/loaders/NowPlayingCursor.java"
23914 line="100"
23915 column="12"/>
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 String[] getColumnNames() {"
23922 errorLine2=" ~~~~~~~~">
23923 <location
23924 file="src/org/lineageos/eleven/loaders/NowPlayingCursor.java"
23925 line="155"
23926 column="12"/>
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 PagerAdapter(final Context context, final FragmentManager fragmentManager) {"
23933 errorLine2=" ~~~~~~~">
23934 <location
23935 file="src/org/lineageos/eleven/adapters/PagerAdapter.java"
23936 line="59"
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 PagerAdapter(final Context context, final FragmentManager fragmentManager) {"
23944 errorLine2=" ~~~~~~~~~~~~~~~">
23945 <location
23946 file="src/org/lineageos/eleven/adapters/PagerAdapter.java"
23947 line="59"
23948 column="54"/>
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 void add(final Class&lt;? extends Fragment> className, final Bundle params) {"
23955 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~">
23956 <location
23957 file="src/org/lineageos/eleven/adapters/PagerAdapter.java"
23958 line="72"
23959 column="27"/>
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 void add(final Class&lt;? extends Fragment> className, final Bundle params) {"
23966 errorLine2=" ~~~~~~">
23967 <location
23968 file="src/org/lineageos/eleven/adapters/PagerAdapter.java"
23969 line="72"
23970 column="70"/>
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 Fragment getFragment(final int position) {"
23977 errorLine2=" ~~~~~~~~">
23978 <location
23979 file="src/org/lineageos/eleven/adapters/PagerAdapter.java"
23980 line="89"
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 CharSequence getPageTitle(final int position) {"
23988 errorLine2=" ~~~~~~~~~~~~">
23989 <location
23990 file="src/org/lineageos/eleven/adapters/PagerAdapter.java"
23991 line="140"
23992 column="12"/>
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 Class&lt;? extends Fragment> getFragmentClass() {"
23999 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~">
24000 <location
24001 file="src/org/lineageos/eleven/adapters/PagerAdapter.java"
24002 line="182"
24003 column="16"/>
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 static PhotoSelectionDialog newInstance(final String title, String key) {"
24010 errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
24011 <location
24012 file="src/org/lineageos/eleven/menu/PhotoSelectionDialog.java"
24013 line="60"
24014 column="19"/>
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 static PhotoSelectionDialog newInstance(final String title, String key) {"
24021 errorLine2=" ~~~~~~">
24022 <location
24023 file="src/org/lineageos/eleven/menu/PhotoSelectionDialog.java"
24024 line="60"
24025 column="58"/>
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 static PhotoSelectionDialog newInstance(final String title, String key) {"
24032 errorLine2=" ~~~~~~">
24033 <location
24034 file="src/org/lineageos/eleven/menu/PhotoSelectionDialog.java"
24035 line="60"
24036 column="72"/>
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 Dialog onCreateDialog(final Bundle savedInstanceState) {"
24043 errorLine2=" ~~~~~~">
24044 <location
24045 file="src/org/lineageos/eleven/menu/PhotoSelectionDialog.java"
24046 line="71"
24047 column="40"/>
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 PlayPauseButton(final Context context, final AttributeSet attrs) {"
24054 errorLine2=" ~~~~~~~">
24055 <location
24056 file="src/org/lineageos/eleven/widgets/PlayPauseButton.java"
24057 line="51"
24058 column="34"/>
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 PlayPauseButton(final Context context, final AttributeSet attrs) {"
24065 errorLine2=" ~~~~~~~~~~~~">
24066 <location
24067 file="src/org/lineageos/eleven/widgets/PlayPauseButton.java"
24068 line="51"
24069 column="57"/>
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 void onClick(final View v) {"
24076 errorLine2=" ~~~~">
24077 <location
24078 file="src/org/lineageos/eleven/widgets/PlayPauseButton.java"
24079 line="61"
24080 column="31"/>
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 boolean onLongClick(final View view) {"
24087 errorLine2=" ~~~~">
24088 <location
24089 file="src/org/lineageos/eleven/widgets/PlayPauseButton.java"
24090 line="67"
24091 column="38"/>
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 PlayPauseButtonContainer(Context context, AttributeSet attrs) {"
24098 errorLine2=" ~~~~~~~">
24099 <location
24100 file="src/org/lineageos/eleven/widgets/PlayPauseButtonContainer.java"
24101 line="28"
24102 column="37"/>
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 PlayPauseButtonContainer(Context context, AttributeSet attrs) {"
24109 errorLine2=" ~~~~~~~~~~~~">
24110 <location
24111 file="src/org/lineageos/eleven/widgets/PlayPauseButtonContainer.java"
24112 line="28"
24113 column="54"/>
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 PlayPauseProgressButton(Context context, AttributeSet attrs) {"
24120 errorLine2=" ~~~~~~~">
24121 <location
24122 file="src/org/lineageos/eleven/widgets/PlayPauseProgressButton.java"
24123 line="40"
24124 column="36"/>
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 PlayPauseProgressButton(Context context, AttributeSet attrs) {"
24131 errorLine2=" ~~~~~~~~~~~~">
24132 <location
24133 file="src/org/lineageos/eleven/widgets/PlayPauseProgressButton.java"
24134 line="40"
24135 column="53"/>
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 String mPlaylistName;"
24142 errorLine2=" ~~~~~~">
24143 <location
24144 file="src/org/lineageos/eleven/model/Playlist.java"
24145 line="40"
24146 column="12"/>
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 Playlist(final long playlistId, final String playlistName, final int songCount) {"
24153 errorLine2=" ~~~~~~">
24154 <location
24155 file="src/org/lineageos/eleven/model/Playlist.java"
24156 line="53"
24157 column="50"/>
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 int compare(Playlist p1, Playlist p2) {"
24164 errorLine2=" ~~~~~~~~">
24165 <location
24166 file="src/org/lineageos/eleven/model/Playlist.java"
24167 line="93"
24168 column="28"/>
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 int compare(Playlist p1, Playlist p2) {"
24175 errorLine2=" ~~~~~~~~">
24176 <location
24177 file="src/org/lineageos/eleven/model/Playlist.java"
24178 line="93"
24179 column="41"/>
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=" protected IListener mListener;"
24186 errorLine2=" ~~~~~~~~~">
24187 <location
24188 file="src/org/lineageos/eleven/adapters/PlaylistAdapter.java"
24189 line="72"
24190 column="15"/>
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 PlaylistAdapter(final FragmentActivity activity,"
24197 errorLine2=" ~~~~~~~~~~~~~~~~">
24198 <location
24199 file="src/org/lineageos/eleven/adapters/PlaylistAdapter.java"
24200 line="86"
24201 column="34"/>
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=" final Consumer&lt;Integer> onItemClickListener) {"
24208 errorLine2=" ~~~~~~~~~~~~~~~~~">
24209 <location
24210 file="src/org/lineageos/eleven/adapters/PlaylistAdapter.java"
24211 line="87"
24212 column="34"/>
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 Playlist getItem(int position) {"
24219 errorLine2=" ~~~~~~~~">
24220 <location
24221 file="src/org/lineageos/eleven/adapters/PlaylistAdapter.java"
24222 line="158"
24223 column="12"/>
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 void add(Playlist playlist) {"
24230 errorLine2=" ~~~~~~~~">
24231 <location
24232 file="src/org/lineageos/eleven/adapters/PlaylistAdapter.java"
24233 line="162"
24234 column="21"/>
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=" public void setPopupMenuClickedListener(IListener listener) {"
24241 errorLine2=" ~~~~~~~~~">
24242 <location
24243 file="src/org/lineageos/eleven/adapters/PlaylistAdapter.java"
24244 line="203"
24245 column="45"/>
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 static synchronized PlaylistArtworkStore getInstance(final Context context) {"
24252 errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
24253 <location
24254 file="src/org/lineageos/eleven/provider/PlaylistArtworkStore.java"
24255 line="42"
24256 column="32"/>
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=" public static synchronized PlaylistArtworkStore getInstance(final Context context) {"
24263 errorLine2=" ~~~~~~~">
24264 <location
24265 file="src/org/lineageos/eleven/provider/PlaylistArtworkStore.java"
24266 line="42"
24267 column="71"/>
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 static String getCoverCacheKey(final long playlistId) {"
24274 errorLine2=" ~~~~~~">
24275 <location
24276 file="src/org/lineageos/eleven/provider/PlaylistArtworkStore.java"
24277 line="53"
24278 column="19"/>
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 static String getArtistCacheKey(final long playlistId) {"
24285 errorLine2=" ~~~~~~">
24286 <location
24287 file="src/org/lineageos/eleven/provider/PlaylistArtworkStore.java"
24288 line="61"
24289 column="19"/>
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 PlaylistArtworkStore(final Context context) {"
24296 errorLine2=" ~~~~~~~">
24297 <location
24298 file="src/org/lineageos/eleven/provider/PlaylistArtworkStore.java"
24299 line="70"
24300 column="39"/>
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 void onCreate(final SQLiteDatabase db) {"
24307 errorLine2=" ~~~~~~~~~~~~~~">
24308 <location
24309 file="src/org/lineageos/eleven/provider/PlaylistArtworkStore.java"
24310 line="75"
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 void onDowngrade(SQLiteDatabase db) {"
24318 errorLine2=" ~~~~~~~~~~~~~~">
24319 <location
24320 file="src/org/lineageos/eleven/provider/PlaylistArtworkStore.java"
24321 line="94"
24322 column="29"/>
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=" protected String getTitle() {"
24329 errorLine2=" ~~~~~~">
24330 <location
24331 file="src/org/lineageos/eleven/ui/fragments/PlaylistDetailFragment.java"
24332 line="94"
24333 column="15"/>
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=" protected PopupMenuHelper createActionMenuHelper() {"
24340 errorLine2=" ~~~~~~~~~~~~~~~">
24341 <location
24342 file="src/org/lineageos/eleven/ui/fragments/PlaylistDetailFragment.java"
24343 line="116"
24344 column="15"/>
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 void onCreate(Bundle savedInstanceState) {"
24351 errorLine2=" ~~~~~~">
24352 <location
24353 file="src/org/lineageos/eleven/ui/fragments/PlaylistDetailFragment.java"
24354 line="136"
24355 column="26"/>
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 Loader&lt;List&lt;Song>> onCreateLoader(int i, Bundle bundle) {"
24362 errorLine2=" ~~~~~~">
24363 <location
24364 file="src/org/lineageos/eleven/ui/fragments/PlaylistDetailFragment.java"
24365 line="255"
24366 column="53"/>
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 onLoadFinished(@NonNull final Loader&lt;List&lt;Song>> loader, final List&lt;Song> data) {"
24373 errorLine2=" ~~~~~~~~~~">
24374 <location
24375 file="src/org/lineageos/eleven/ui/fragments/PlaylistDetailFragment.java"
24376 line="262"
24377 column="80"/>
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=" public PagerAdapter.MusicFragments getMusicFragmentParent() {"
24384 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~">
24385 <location
24386 file="src/org/lineageos/eleven/ui/fragments/PlaylistDetailFragment.java"
24387 line="357"
24388 column="12"/>
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=" public void onCreate(final Bundle savedInstanceState) {"
24395 errorLine2=" ~~~~~~">
24396 <location
24397 file="src/org/lineageos/eleven/ui/fragments/PlaylistFragment.java"
24398 line="88"
24399 column="32"/>
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 View onCreateView(@NonNull final LayoutInflater inflater, final ViewGroup container,"
24406 errorLine2=" ~~~~">
24407 <location
24408 file="src/org/lineageos/eleven/ui/fragments/PlaylistFragment.java"
24409 line="105"
24410 column="12"/>
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 View onCreateView(@NonNull final LayoutInflater inflater, final ViewGroup container,"
24417 errorLine2=" ~~~~~~~~~">
24418 <location
24419 file="src/org/lineageos/eleven/ui/fragments/PlaylistFragment.java"
24420 line="105"
24421 column="76"/>
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=" final Bundle savedInstanceState) {"
24428 errorLine2=" ~~~~~~">
24429 <location
24430 file="src/org/lineageos/eleven/ui/fragments/PlaylistFragment.java"
24431 line="106"
24432 column="36"/>
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 Loader&lt;List&lt;Playlist>> onCreateLoader(final int id, final Bundle args) {"
24439 errorLine2=" ~~~~~~">
24440 <location
24441 file="src/org/lineageos/eleven/ui/fragments/PlaylistFragment.java"
24442 line="162"
24443 column="70"/>
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=" final List&lt;Playlist> data) {"
24450 errorLine2=" ~~~~~~~~~~~~~~">
24451 <location
24452 file="src/org/lineageos/eleven/ui/fragments/PlaylistFragment.java"
24453 line="170"
24454 column="38"/>
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 PlaylistLoader(final Context context) {"
24461 errorLine2=" ~~~~~~~">
24462 <location
24463 file="src/org/lineageos/eleven/loaders/PlaylistLoader.java"
24464 line="53"
24465 column="33"/>
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 List&lt;Playlist> loadInBackground() {"
24472 errorLine2=" ~~~~~~~~~~~~~~">
24473 <location
24474 file="src/org/lineageos/eleven/loaders/PlaylistLoader.java"
24475 line="58"
24476 column="12"/>
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=" public static Cursor makePlaylistCursor(final Context context) {"
24483 errorLine2=" ~~~~~~">
24484 <location
24485 file="src/org/lineageos/eleven/loaders/PlaylistLoader.java"
24486 line="115"
24487 column="19"/>
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 static Cursor makePlaylistCursor(final Context context) {"
24494 errorLine2=" ~~~~~~~">
24495 <location
24496 file="src/org/lineageos/eleven/loaders/PlaylistLoader.java"
24497 line="115"
24498 column="51"/>
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=" public PlaylistPopupMenuHelper(Activity activity, FragmentManager fragmentManager,"
24505 errorLine2=" ~~~~~~~~">
24506 <location
24507 file="src/org/lineageos/eleven/utils/PlaylistPopupMenuHelper.java"
24508 line="35"
24509 column="36"/>
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 PlaylistPopupMenuHelper(Activity activity, FragmentManager fragmentManager,"
24516 errorLine2=" ~~~~~~~~~~~~~~~">
24517 <location
24518 file="src/org/lineageos/eleven/utils/PlaylistPopupMenuHelper.java"
24519 line="35"
24520 column="55"/>
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=" PopupMenuType type) {"
24527 errorLine2=" ~~~~~~~~~~~~~">
24528 <location
24529 file="src/org/lineageos/eleven/utils/PlaylistPopupMenuHelper.java"
24530 line="36"
24531 column="36"/>
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 abstract Playlist getPlaylist(int position);"
24538 errorLine2=" ~~~~~~~~">
24539 <location
24540 file="src/org/lineageos/eleven/utils/PlaylistPopupMenuHelper.java"
24541 line="41"
24542 column="21"/>
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 PopupMenuType onPreparePopupMenu(int position) {"
24549 errorLine2=" ~~~~~~~~~~~~~">
24550 <location
24551 file="src/org/lineageos/eleven/utils/PlaylistPopupMenuHelper.java"
24552 line="44"
24553 column="12"/>
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 void updateName(String name) {"
24560 errorLine2=" ~~~~~~">
24561 <location
24562 file="src/org/lineageos/eleven/utils/PlaylistPopupMenuHelper.java"
24563 line="50"
24564 column="28"/>
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=" protected Config.IdType getSourceType() {"
24571 errorLine2=" ~~~~~~~~~~~~~">
24572 <location
24573 file="src/org/lineageos/eleven/utils/PlaylistPopupMenuHelper.java"
24574 line="62"
24575 column="15"/>
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=" protected long[] getIdList() {"
24582 errorLine2=" ~~~~~~">
24583 <location
24584 file="src/org/lineageos/eleven/utils/PlaylistPopupMenuHelper.java"
24585 line="67"
24586 column="15"/>
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 PlaylistSongLoader(final Context context, final long playlistId) {"
24593 errorLine2=" ~~~~~~~">
24594 <location
24595 file="src/org/lineageos/eleven/loaders/PlaylistSongLoader.java"
24596 line="62"
24597 column="37"/>
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 List&lt;Song> loadInBackground() {"
24604 errorLine2=" ~~~~~~~~~~">
24605 <location
24606 file="src/org/lineageos/eleven/loaders/PlaylistSongLoader.java"
24607 line="68"
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 static Cursor makePlaylistSongCursor(final Context context, final Long playlistID) {"
24615 errorLine2=" ~~~~~~">
24616 <location
24617 file="src/org/lineageos/eleven/loaders/PlaylistSongLoader.java"
24618 line="246"
24619 column="19"/>
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=" public static Cursor makePlaylistSongCursor(final Context context, final Long playlistID) {"
24626 errorLine2=" ~~~~~~~">
24627 <location
24628 file="src/org/lineageos/eleven/loaders/PlaylistSongLoader.java"
24629 line="246"
24630 column="55"/>
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=" public static Cursor makePlaylistSongCursor(final Context context, final Long playlistID) {"
24637 errorLine2=" ~~~~">
24638 <location
24639 file="src/org/lineageos/eleven/loaders/PlaylistSongLoader.java"
24640 line="246"
24641 column="78"/>
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 PlaylistWorkerTask(final String key, final long playlistId,"
24648 errorLine2=" ~~~~~~">
24649 <location
24650 file="src/org/lineageos/eleven/cache/PlaylistWorkerTask.java"
24651 line="74"
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=" final PlaylistWorkerType type, final boolean foundInCache,"
24659 errorLine2=" ~~~~~~~~~~~~~~~~~~">
24660 <location
24661 file="src/org/lineageos/eleven/cache/PlaylistWorkerTask.java"
24662 line="75"
24663 column="37"/>
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=" final ImageView imageView, final Drawable fromDrawable,"
24670 errorLine2=" ~~~~~~~~~">
24671 <location
24672 file="src/org/lineageos/eleven/cache/PlaylistWorkerTask.java"
24673 line="76"
24674 column="37"/>
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=" final ImageView imageView, final Drawable fromDrawable,"
24681 errorLine2=" ~~~~~~~~">
24682 <location
24683 file="src/org/lineageos/eleven/cache/PlaylistWorkerTask.java"
24684 line="76"
24685 column="64"/>
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=" final Context context) {"
24692 errorLine2=" ~~~~~~~">
24693 <location
24694 file="src/org/lineageos/eleven/cache/PlaylistWorkerTask.java"
24695 line="77"
24696 column="37"/>
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=" protected TransitionDrawable doInBackground(final Void... params) {"
24703 errorLine2=" ~~~~~~~~~~~~~~~~~~">
24704 <location
24705 file="src/org/lineageos/eleven/cache/PlaylistWorkerTask.java"
24706 line="88"
24707 column="15"/>
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=" protected TransitionDrawable doInBackground(final Void... params) {"
24714 errorLine2=" ~~~~~~~">
24715 <location
24716 file="src/org/lineageos/eleven/cache/PlaylistWorkerTask.java"
24717 line="88"
24718 column="55"/>
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=" protected Cursor getTopSongsForPlaylist() {"
24725 errorLine2=" ~~~~~~">
24726 <location
24727 file="src/org/lineageos/eleven/cache/PlaylistWorkerTask.java"
24728 line="172"
24729 column="15"/>
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=" protected Bitmap loadTopArtist(Cursor sortedCursor) {"
24736 errorLine2=" ~~~~~~">
24737 <location
24738 file="src/org/lineageos/eleven/cache/PlaylistWorkerTask.java"
24739 line="222"
24740 column="15"/>
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=" protected Bitmap loadTopArtist(Cursor sortedCursor) {"
24747 errorLine2=" ~~~~~~">
24748 <location
24749 file="src/org/lineageos/eleven/cache/PlaylistWorkerTask.java"
24750 line="222"
24751 column="36"/>
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 Bitmap loadTopSongs(Cursor sortedCursor) {"
24758 errorLine2=" ~~~~~~">
24759 <location
24760 file="src/org/lineageos/eleven/cache/PlaylistWorkerTask.java"
24761 line="268"
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 Bitmap loadTopSongs(Cursor sortedCursor) {"
24769 errorLine2=" ~~~~~~">
24770 <location
24771 file="src/org/lineageos/eleven/cache/PlaylistWorkerTask.java"
24772 line="268"
24773 column="35"/>
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 void onPostExecute(TransitionDrawable transitionDrawable) {"
24780 errorLine2=" ~~~~~~~~~~~~~~~~~~">
24781 <location
24782 file="src/org/lineageos/eleven/cache/PlaylistWorkerTask.java"
24783 line="361"
24784 column="34"/>
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 IListener mClickListener = null;"
24791 errorLine2=" ~~~~~~~~~">
24792 <location
24793 file="src/org/lineageos/eleven/widgets/PopupMenuButton.java"
24794 line="31"
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=" public PopupMenuButton(Context context, AttributeSet attrs) {"
24802 errorLine2=" ~~~~~~~">
24803 <location
24804 file="src/org/lineageos/eleven/widgets/PopupMenuButton.java"
24805 line="33"
24806 column="28"/>
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=" public PopupMenuButton(Context context, AttributeSet attrs) {"
24813 errorLine2=" ~~~~~~~~~~~~">
24814 <location
24815 file="src/org/lineageos/eleven/widgets/PopupMenuButton.java"
24816 line="33"
24817 column="45"/>
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=" public void setPopupMenuClickedListener(final IListener listener) {"
24824 errorLine2=" ~~~~~~~~~">
24825 <location
24826 file="src/org/lineageos/eleven/widgets/PopupMenuButton.java"
24827 line="46"
24828 column="51"/>
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=" public void onClick(View v) {"
24835 errorLine2=" ~~~~">
24836 <location
24837 file="src/org/lineageos/eleven/widgets/PopupMenuButton.java"
24838 line="51"
24839 column="25"/>
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 PopupMenuType mType;"
24846 errorLine2=" ~~~~~~~~~~~~~">
24847 <location
24848 file="src/org/lineageos/eleven/utils/PopupMenuHelper.java"
24849 line="61"
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 PopupMenuHelper(final Activity activity, final FragmentManager fragmentManager) {"
24857 errorLine2=" ~~~~~~~~">
24858 <location
24859 file="src/org/lineageos/eleven/utils/PopupMenuHelper.java"
24860 line="64"
24861 column="34"/>
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 PopupMenuHelper(final Activity activity, final FragmentManager fragmentManager) {"
24868 errorLine2=" ~~~~~~~~~~~~~~~">
24869 <location
24870 file="src/org/lineageos/eleven/utils/PopupMenuHelper.java"
24871 line="64"
24872 column="59"/>
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 showPopupMenu(final View view, final int position) {"
24879 errorLine2=" ~~~~">
24880 <location
24881 file="src/org/lineageos/eleven/utils/PopupMenuHelper.java"
24882 line="76"
24883 column="37"/>
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 abstract PopupMenuType onPreparePopupMenu(final int position);"
24890 errorLine2=" ~~~~~~~~~~~~~">
24891 <location
24892 file="src/org/lineageos/eleven/utils/PopupMenuHelper.java"
24893 line="102"
24894 column="21"/>
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 abstract long[] getIdList();"
24901 errorLine2=" ~~~~~~">
24902 <location
24903 file="src/org/lineageos/eleven/utils/PopupMenuHelper.java"
24904 line="107"
24905 column="24"/>
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=" protected abstract Config.IdType getSourceType();"
24912 errorLine2=" ~~~~~~~~~~~~~">
24913 <location
24914 file="src/org/lineageos/eleven/utils/PopupMenuHelper.java"
24915 line="111"
24916 column="24"/>
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=" protected String getArtistName() {"
24923 errorLine2=" ~~~~~~">
24924 <location
24925 file="src/org/lineageos/eleven/utils/PopupMenuHelper.java"
24926 line="131"
24927 column="15"/>
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 createPopupMenu(final Menu menu) {"
24934 errorLine2=" ~~~~">
24935 <location
24936 file="src/org/lineageos/eleven/utils/PopupMenuHelper.java"
24937 line="180"
24938 column="39"/>
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=" protected void updateMenuIds(PopupMenuType type, TreeSet&lt;Integer> set) {"
24945 errorLine2=" ~~~~~~~~~~~~~">
24946 <location
24947 file="src/org/lineageos/eleven/utils/PopupMenuHelper.java"
24948 line="272"
24949 column="34"/>
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 void updateMenuIds(PopupMenuType type, TreeSet&lt;Integer> set) {"
24956 errorLine2=" ~~~~~~~~~~~~~~~~">
24957 <location
24958 file="src/org/lineageos/eleven/utils/PopupMenuHelper.java"
24959 line="272"
24960 column="54"/>
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=" public void addToMenu(final Menu menu, final int id, final int resourceId) {"
24967 errorLine2=" ~~~~">
24968 <location
24969 file="src/org/lineageos/eleven/utils/PopupMenuHelper.java"
24970 line="337"
24971 column="33"/>
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=" public boolean onMenuItemClick(MenuItem item) {"
24978 errorLine2=" ~~~~~~~~">
24979 <location
24980 file="src/org/lineageos/eleven/utils/PopupMenuHelper.java"
24981 line="342"
24982 column="36"/>
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 PreferenceUtils(final Context context) {"
24989 errorLine2=" ~~~~~~~">
24990 <location
24991 file="src/org/lineageos/eleven/utils/PreferenceUtils.java"
24992 line="87"
24993 column="34"/>
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=" public static PreferenceUtils getInstance(final Context context) {"
25000 errorLine2=" ~~~~~~~~~~~~~~~">
25001 <location
25002 file="src/org/lineageos/eleven/utils/PreferenceUtils.java"
25003 line="95"
25004 column="19"/>
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=" public static PreferenceUtils getInstance(final Context context) {"
25011 errorLine2=" ~~~~~~~">
25012 <location
25013 file="src/org/lineageos/eleven/utils/PreferenceUtils.java"
25014 line="95"
25015 column="53"/>
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 setOnSharedPreferenceChangeListener(OnSharedPreferenceChangeListener listener) {"
25022 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
25023 <location
25024 file="src/org/lineageos/eleven/utils/PreferenceUtils.java"
25025 line="117"
25026 column="53"/>
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 void removeOnSharedPreferenceChangeListener(OnSharedPreferenceChangeListener listener) {"
25033 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
25034 <location
25035 file="src/org/lineageos/eleven/utils/PreferenceUtils.java"
25036 line="124"
25037 column="56"/>
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 void setArtistSortOrder(final String value) {"
25044 errorLine2=" ~~~~~~">
25045 <location
25046 file="src/org/lineageos/eleven/utils/PreferenceUtils.java"
25047 line="154"
25048 column="42"/>
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 final String getArtistSortOrder() {"
25055 errorLine2=" ~~~~~~">
25056 <location
25057 file="src/org/lineageos/eleven/utils/PreferenceUtils.java"
25058 line="161"
25059 column="18"/>
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 void setAlbumSortOrder(final String value) {"
25066 errorLine2=" ~~~~~~">
25067 <location
25068 file="src/org/lineageos/eleven/utils/PreferenceUtils.java"
25069 line="170"
25070 column="41"/>
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 final String getAlbumSortOrder() {"
25077 errorLine2=" ~~~~~~">
25078 <location
25079 file="src/org/lineageos/eleven/utils/PreferenceUtils.java"
25080 line="177"
25081 column="18"/>
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 final String getAlbumSongSortOrder() {"
25088 errorLine2=" ~~~~~~">
25089 <location
25090 file="src/org/lineageos/eleven/utils/PreferenceUtils.java"
25091 line="185"
25092 column="18"/>
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 setSongSortOrder(final String value) {"
25099 errorLine2=" ~~~~~~">
25100 <location
25101 file="src/org/lineageos/eleven/utils/PreferenceUtils.java"
25102 line="195"
25103 column="40"/>
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 getSongSortOrder() {"
25110 errorLine2=" ~~~~~~">
25111 <location
25112 file="src/org/lineageos/eleven/utils/PreferenceUtils.java"
25113 line="202"
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 static boolean canRecordAudio(Activity activity) {"
25121 errorLine2=" ~~~~~~~~">
25122 <location
25123 file="src/org/lineageos/eleven/utils/PreferenceUtils.java"
25124 line="224"
25125 column="42"/>
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 static void requestRecordAudio(Activity activity) {"
25132 errorLine2=" ~~~~~~~~">
25133 <location
25134 file="src/org/lineageos/eleven/utils/PreferenceUtils.java"
25135 line="229"
25136 column="43"/>
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 ProfileSongAdapter(final long playlistId, final FragmentActivity context,"
25143 errorLine2=" ~~~~~~~~~~~~~~~~">
25144 <location
25145 file="src/org/lineageos/eleven/adapters/ProfileSongAdapter.java"
25146 line="94"
25147 column="60"/>
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=" final int layoutId, final Consumer&lt;Integer> onItemClickListener) {"
25154 errorLine2=" ~~~~~~~~~~~~~~~~~">
25155 <location
25156 file="src/org/lineageos/eleven/adapters/ProfileSongAdapter.java"
25157 line="95"
25158 column="57"/>
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=" protected boolean showNowPlayingIndicator(final Song song) {"
25165 errorLine2=" ~~~~">
25166 <location
25167 file="src/org/lineageos/eleven/adapters/ProfileSongAdapter.java"
25168 line="113"
25169 column="53"/>
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 void setPopupMenuClickedListener(IPopupMenuCallback.IListener listener) {"
25176 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
25177 <location
25178 file="src/org/lineageos/eleven/adapters/ProfileSongAdapter.java"
25179 line="174"
25180 column="45"/>
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 void setCurrentlyPlayingTrack(MusicPlaybackTrack currentTrack) {"
25187 errorLine2=" ~~~~~~~~~~~~~~~~~~">
25188 <location
25189 file="src/org/lineageos/eleven/adapters/ProfileSongAdapter.java"
25190 line="183"
25191 column="42"/>
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 Song getItem(int position) {"
25198 errorLine2=" ~~~~">
25199 <location
25200 file="src/org/lineageos/eleven/adapters/ProfileSongAdapter.java"
25201 line="205"
25202 column="12"/>
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=" public void setData(List&lt;Song> songs) {"
25209 errorLine2=" ~~~~~~~~~~">
25210 <location
25211 file="src/org/lineageos/eleven/adapters/ProfileSongAdapter.java"
25212 line="209"
25213 column="25"/>
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=" public void remove(Song song) {"
25220 errorLine2=" ~~~~">
25221 <location
25222 file="src/org/lineageos/eleven/adapters/ProfileSongAdapter.java"
25223 line="233"
25224 column="24"/>
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 static synchronized PropertiesStore getInstance(final Context context) {"
25231 errorLine2=" ~~~~~~~~~~~~~~~">
25232 <location
25233 file="src/org/lineageos/eleven/provider/PropertiesStore.java"
25234 line="30"
25235 column="32"/>
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 static synchronized PropertiesStore getInstance(final Context context) {"
25242 errorLine2=" ~~~~~~~">
25243 <location
25244 file="src/org/lineageos/eleven/provider/PropertiesStore.java"
25245 line="30"
25246 column="66"/>
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 void onCreate(final SQLiteDatabase db) {"
25253 errorLine2=" ~~~~~~~~~~~~~~">
25254 <location
25255 file="src/org/lineageos/eleven/provider/PropertiesStore.java"
25256 line="42"
25257 column="32"/>
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 onUpgrade(final SQLiteDatabase db, final int oldVersion, final int newVersion) {"
25264 errorLine2=" ~~~~~~~~~~~~~~">
25265 <location
25266 file="src/org/lineageos/eleven/provider/PropertiesStore.java"
25267 line="48"
25268 column="33"/>
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 onDowngrade(SQLiteDatabase db) {"
25275 errorLine2=" ~~~~~~~~~~~~~~">
25276 <location
25277 file="src/org/lineageos/eleven/provider/PropertiesStore.java"
25278 line="55"
25279 column="29"/>
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 String getProperty(String key) {"
25286 errorLine2=" ~~~~~~">
25287 <location
25288 file="src/org/lineageos/eleven/provider/PropertiesStore.java"
25289 line="61"
25290 column="12"/>
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 String getProperty(String key) {"
25297 errorLine2=" ~~~~~~">
25298 <location
25299 file="src/org/lineageos/eleven/provider/PropertiesStore.java"
25300 line="61"
25301 column="31"/>
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 String getProperty(String key, String defaultValue) {"
25308 errorLine2=" ~~~~~~">
25309 <location
25310 file="src/org/lineageos/eleven/provider/PropertiesStore.java"
25311 line="65"
25312 column="12"/>
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 String getProperty(String key, String defaultValue) {"
25319 errorLine2=" ~~~~~~">
25320 <location
25321 file="src/org/lineageos/eleven/provider/PropertiesStore.java"
25322 line="65"
25323 column="31"/>
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 String getProperty(String key, String defaultValue) {"
25330 errorLine2=" ~~~~~~">
25331 <location
25332 file="src/org/lineageos/eleven/provider/PropertiesStore.java"
25333 line="65"
25334 column="43"/>
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 void storeProperty(String key, String value) {"
25341 errorLine2=" ~~~~~~">
25342 <location
25343 file="src/org/lineageos/eleven/provider/PropertiesStore.java"
25344 line="83"
25345 column="31"/>
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 void storeProperty(String key, String value) {"
25352 errorLine2=" ~~~~~~">
25353 <location
25354 file="src/org/lineageos/eleven/provider/PropertiesStore.java"
25355 line="83"
25356 column="43"/>
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 void onCreate(final Bundle savedInstanceState) {"
25363 errorLine2=" ~~~~~~">
25364 <location
25365 file="src/org/lineageos/eleven/ui/fragments/QueueFragment.java"
25366 line="117"
25367 column="32"/>
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 View onCreateView(final LayoutInflater inflater, final ViewGroup container,"
25374 errorLine2=" ~~~~">
25375 <location
25376 file="src/org/lineageos/eleven/ui/fragments/QueueFragment.java"
25377 line="207"
25378 column="12"/>
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 View onCreateView(final LayoutInflater inflater, final ViewGroup container,"
25385 errorLine2=" ~~~~~~~~~~~~~~">
25386 <location
25387 file="src/org/lineageos/eleven/ui/fragments/QueueFragment.java"
25388 line="207"
25389 column="36"/>
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 View onCreateView(final LayoutInflater inflater, final ViewGroup container,"
25396 errorLine2=" ~~~~~~~~~">
25397 <location
25398 file="src/org/lineageos/eleven/ui/fragments/QueueFragment.java"
25399 line="207"
25400 column="67"/>
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=" final Bundle savedInstanceState) {"
25407 errorLine2=" ~~~~~~">
25408 <location
25409 file="src/org/lineageos/eleven/ui/fragments/QueueFragment.java"
25410 line="208"
25411 column="36"/>
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 onServiceConnected(final ComponentName name, final IBinder service) {"
25418 errorLine2=" ~~~~~~~~~~~~~">
25419 <location
25420 file="src/org/lineageos/eleven/ui/fragments/QueueFragment.java"
25421 line="228"
25422 column="42"/>
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 void onServiceConnected(final ComponentName name, final IBinder service) {"
25429 errorLine2=" ~~~~~~~">
25430 <location
25431 file="src/org/lineageos/eleven/ui/fragments/QueueFragment.java"
25432 line="228"
25433 column="68"/>
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 void onServiceDisconnected(ComponentName name) {"
25440 errorLine2=" ~~~~~~~~~~~~~">
25441 <location
25442 file="src/org/lineageos/eleven/ui/fragments/QueueFragment.java"
25443 line="233"
25444 column="39"/>
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 Loader&lt;List&lt;Song>> onCreateLoader(final int id, final Bundle args) {"
25451 errorLine2=" ~~~~~~">
25452 <location
25453 file="src/org/lineageos/eleven/ui/fragments/QueueFragment.java"
25454 line="283"
25455 column="66"/>
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=" public void onLoadFinished(@NonNull final Loader&lt;List&lt;Song>> loader, final List&lt;Song> data) {"
25462 errorLine2=" ~~~~~~~~~~">
25463 <location
25464 file="src/org/lineageos/eleven/ui/fragments/QueueFragment.java"
25465 line="289"
25466 column="80"/>
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 QueueLoader(final Context context) {"
25473 errorLine2=" ~~~~~~~">
25474 <location
25475 file="src/org/lineageos/eleven/loaders/QueueLoader.java"
25476 line="46"
25477 column="30"/>
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 List&lt;Song> loadInBackground() {"
25484 errorLine2=" ~~~~~~~~~~">
25485 <location
25486 file="src/org/lineageos/eleven/loaders/QueueLoader.java"
25487 line="51"
25488 column="12"/>
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 static Cursor makeQueueCursor(final Context context) {"
25495 errorLine2=" ~~~~~~">
25496 <location
25497 file="src/org/lineageos/eleven/loaders/QueueLoader.java"
25498 line="100"
25499 column="19"/>
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 static Cursor makeQueueCursor(final Context context) {"
25506 errorLine2=" ~~~~~~~">
25507 <location
25508 file="src/org/lineageos/eleven/loaders/QueueLoader.java"
25509 line="100"
25510 column="48"/>
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 QueueSongAdapter(final FragmentActivity context, final int layoutId, final long sourceId,"
25517 errorLine2=" ~~~~~~~~~~~~~~~~">
25518 <location
25519 file="src/org/lineageos/eleven/adapters/QueueSongAdapter.java"
25520 line="90"
25521 column="35"/>
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=" final Config.IdType sourceType,"
25528 errorLine2=" ~~~~~~~~~~~~~">
25529 <location
25530 file="src/org/lineageos/eleven/adapters/QueueSongAdapter.java"
25531 line="91"
25532 column="35"/>
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=" final Consumer&lt;Integer> onItemClickListener) {"
25539 errorLine2=" ~~~~~~~~~~~~~~~~~">
25540 <location
25541 file="src/org/lineageos/eleven/adapters/QueueSongAdapter.java"
25542 line="92"
25543 column="35"/>
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=" protected boolean showNowPlayingIndicator(final Song song) {"
25550 errorLine2=" ~~~~">
25551 <location
25552 file="src/org/lineageos/eleven/adapters/QueueSongAdapter.java"
25553 line="111"
25554 column="53"/>
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 void setCurrentlyPlayingTrack(MusicPlaybackTrack currentTrack) {"
25561 errorLine2=" ~~~~~~~~~~~~~~~~~~">
25562 <location
25563 file="src/org/lineageos/eleven/adapters/QueueSongAdapter.java"
25564 line="184"
25565 column="42"/>
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 void setPopupMenuClickedListener(IListener listener) {"
25572 errorLine2=" ~~~~~~~~~">
25573 <location
25574 file="src/org/lineageos/eleven/adapters/QueueSongAdapter.java"
25575 line="207"
25576 column="45"/>
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=" public Song getItem(int position) {"
25583 errorLine2=" ~~~~">
25584 <location
25585 file="src/org/lineageos/eleven/adapters/QueueSongAdapter.java"
25586 line="211"
25587 column="12"/>
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=" public void setData(List&lt;Song> song) {"
25594 errorLine2=" ~~~~~~~~~~">
25595 <location
25596 file="src/org/lineageos/eleven/adapters/QueueSongAdapter.java"
25597 line="215"
25598 column="25"/>
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 SmartPlaylistType getSmartPlaylistType() {"
25605 errorLine2=" ~~~~~~~~~~~~~~~~~">
25606 <location
25607 file="src/org/lineageos/eleven/ui/fragments/RecentFragment.java"
25608 line="55"
25609 column="15"/>
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=" protected void updateMenuIds(TreeSet&lt;Integer> set) {"
25616 errorLine2=" ~~~~~~~~~~~~~~~~">
25617 <location
25618 file="src/org/lineageos/eleven/ui/fragments/RecentFragment.java"
25619 line="60"
25620 column="34"/>
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 Loader&lt;SectionListContainer&lt;Song>> onCreateLoader(final int id, final Bundle args) {"
25627 errorLine2=" ~~~~~~">
25628 <location
25629 file="src/org/lineageos/eleven/ui/fragments/RecentFragment.java"
25630 line="66"
25631 column="82"/>
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 void setupNoResultsContainer(NoResultsContainer empty) {"
25638 errorLine2=" ~~~~~~~~~~~~~~~~~~">
25639 <location
25640 file="src/org/lineageos/eleven/ui/fragments/RecentFragment.java"
25641 line="84"
25642 column="41"/>
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 final View onCreateView(LayoutInflater inflater, ViewGroup container,"
25649 errorLine2=" ~~~~">
25650 <location
25651 file="src/org/lineageos/eleven/ui/fragments/RecentFragment.java"
25652 line="92"
25653 column="18"/>
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=" public final View onCreateView(LayoutInflater inflater, ViewGroup container,"
25660 errorLine2=" ~~~~~~~~~~~~~~">
25661 <location
25662 file="src/org/lineageos/eleven/ui/fragments/RecentFragment.java"
25663 line="92"
25664 column="36"/>
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=" public final View onCreateView(LayoutInflater inflater, ViewGroup container,"
25671 errorLine2=" ~~~~~~~~~">
25672 <location
25673 file="src/org/lineageos/eleven/ui/fragments/RecentFragment.java"
25674 line="92"
25675 column="61"/>
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=" Bundle savedInstanceState) {"
25682 errorLine2=" ~~~~~~">
25683 <location
25684 file="src/org/lineageos/eleven/ui/fragments/RecentFragment.java"
25685 line="93"
25686 column="36"/>
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=" protected SongListAdapter createAdapter() {"
25693 errorLine2=" ~~~~~~~~~~~~~~~">
25694 <location
25695 file="src/org/lineageos/eleven/ui/fragments/RecentFragment.java"
25696 line="114"
25697 column="15"/>
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 RecentStore(final Context context) {"
25704 errorLine2=" ~~~~~~~">
25705 <location
25706 file="src/org/lineageos/eleven/provider/RecentStore.java"
25707 line="38"
25708 column="30"/>
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 void onCreate(final SQLiteDatabase db) {"
25715 errorLine2=" ~~~~~~~~~~~~~~">
25716 <location
25717 file="src/org/lineageos/eleven/provider/RecentStore.java"
25718 line="42"
25719 column="32"/>
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 void onDowngrade(SQLiteDatabase db) {"
25726 errorLine2=" ~~~~~~~~~~~~~~">
25727 <location
25728 file="src/org/lineageos/eleven/provider/RecentStore.java"
25729 line="48"
25730 column="29"/>
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=" public static synchronized RecentStore getInstance(final Context context) {"
25737 errorLine2=" ~~~~~~~~~~~">
25738 <location
25739 file="src/org/lineageos/eleven/provider/RecentStore.java"
25740 line="58"
25741 column="32"/>
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=" public static synchronized RecentStore getInstance(final Context context) {"
25748 errorLine2=" ~~~~~~~">
25749 <location
25750 file="src/org/lineageos/eleven/provider/RecentStore.java"
25751 line="58"
25752 column="62"/>
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 Cursor queryRecentIds(final String limit) {"
25759 errorLine2=" ~~~~~~">
25760 <location
25761 file="src/org/lineageos/eleven/provider/RecentStore.java"
25762 line="130"
25763 column="12"/>
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 Cursor queryRecentIds(final String limit) {"
25770 errorLine2=" ~~~~~~">
25771 <location
25772 file="src/org/lineageos/eleven/provider/RecentStore.java"
25773 line="130"
25774 column="40"/>
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 static RenamePlaylist getInstance(final Long id) {"
25781 errorLine2=" ~~~~~~~~~~~~~~">
25782 <location
25783 file="src/org/lineageos/eleven/menu/RenamePlaylist.java"
25784 line="49"
25785 column="19"/>
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 RenamePlaylist getInstance(final Long id) {"
25792 errorLine2=" ~~~~">
25793 <location
25794 file="src/org/lineageos/eleven/menu/RenamePlaylist.java"
25795 line="49"
25796 column="52"/>
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 void initialize(final Bundle savedInstanceState) {"
25803 errorLine2=" ~~~~~~">
25804 <location
25805 file="src/org/lineageos/eleven/menu/RenamePlaylist.java"
25806 line="64"
25807 column="34"/>
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 void afterTextChanged(Editable editable) {"
25814 errorLine2=" ~~~~~~~~">
25815 <location
25816 file="src/org/lineageos/eleven/menu/RenamePlaylist.java"
25817 line="105"
25818 column="34"/>
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 RepeatButton(final Context context, final AttributeSet attrs) {"
25825 errorLine2=" ~~~~~~~">
25826 <location
25827 file="src/org/lineageos/eleven/widgets/RepeatButton.java"
25828 line="35"
25829 column="31"/>
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 RepeatButton(final Context context, final AttributeSet attrs) {"
25836 errorLine2=" ~~~~~~~~~~~~">
25837 <location
25838 file="src/org/lineageos/eleven/widgets/RepeatButton.java"
25839 line="35"
25840 column="54"/>
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 void onClick(final View v) {"
25847 errorLine2=" ~~~~">
25848 <location
25849 file="src/org/lineageos/eleven/widgets/RepeatButton.java"
25850 line="40"
25851 column="31"/>
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 RepeatingImageButton(final Context context, final AttributeSet attrs) {"
25858 errorLine2=" ~~~~~~~">
25859 <location
25860 file="src/org/lineageos/eleven/widgets/RepeatingImageButton.java"
25861 line="53"
25862 column="39"/>
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 RepeatingImageButton(final Context context, final AttributeSet attrs) {"
25869 errorLine2=" ~~~~~~~~~~~~">
25870 <location
25871 file="src/org/lineageos/eleven/widgets/RepeatingImageButton.java"
25872 line="53"
25873 column="62"/>
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 void onClick(final View view) {"
25880 errorLine2=" ~~~~">
25881 <location
25882 file="src/org/lineageos/eleven/widgets/RepeatingImageButton.java"
25883 line="64"
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 void setRepeatListener(final RepeatListener l) {"
25891 errorLine2=" ~~~~~~~~~~~~~~">
25892 <location
25893 file="src/org/lineageos/eleven/widgets/RepeatingImageButton.java"
25894 line="79"
25895 column="41"/>
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 boolean onTouchEvent(final MotionEvent event) {"
25902 errorLine2=" ~~~~~~~~~~~">
25903 <location
25904 file="src/org/lineageos/eleven/widgets/RepeatingImageButton.java"
25905 line="95"
25906 column="39"/>
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 boolean onKeyDown(final int keyCode, final KeyEvent event) {"
25913 errorLine2=" ~~~~~~~~">
25914 <location
25915 file="src/org/lineageos/eleven/widgets/RepeatingImageButton.java"
25916 line="108"
25917 column="55"/>
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 boolean onKeyUp(final int keyCode, final KeyEvent event) {"
25924 errorLine2=" ~~~~~~~~">
25925 <location
25926 file="src/org/lineageos/eleven/widgets/RepeatingImageButton.java"
25927 line="123"
25928 column="53"/>
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=" void onRepeat(View v, long duration, int repeatCount);"
25935 errorLine2=" ~~~~">
25936 <location
25937 file="src/org/lineageos/eleven/widgets/RepeatingImageButton.java"
25938 line="178"
25939 column="23"/>
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 SimpleListLoader(Context context) {"
25946 errorLine2=" ~~~~~~~">
25947 <location
25948 file="src/org/lineageos/eleven/sectionadapter/SectionCreator.java"
25949 line="44"
25950 column="33"/>
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 SectionCreator(Context context, SimpleListLoader&lt;T> loader,"
25957 errorLine2=" ~~~~~~~">
25958 <location
25959 file="src/org/lineageos/eleven/sectionadapter/SectionCreator.java"
25960 line="66"
25961 column="27"/>
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 SectionCreator(Context context, SimpleListLoader&lt;T> loader,"
25968 errorLine2=" ~~~~~~~~~~~~~~~~~~~">
25969 <location
25970 file="src/org/lineageos/eleven/sectionadapter/SectionCreator.java"
25971 line="66"
25972 column="44"/>
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=" SectionCreatorUtils.IItemCompare&lt;T> comparator) {"
25979 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
25980 <location
25981 file="src/org/lineageos/eleven/sectionadapter/SectionCreator.java"
25982 line="67"
25983 column="27"/>
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=" public SectionListContainer&lt;T> loadInBackground() {"
25990 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
25991 <location
25992 file="src/org/lineageos/eleven/sectionadapter/SectionCreator.java"
25993 line="74"
25994 column="12"/>
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 Section(final SectionType type, final String identifier) {"
26001 errorLine2=" ~~~~~~~~~~~">
26002 <location
26003 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26004 line="43"
26005 column="30"/>
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 Section(final SectionType type, final String identifier) {"
26012 errorLine2=" ~~~~~~">
26013 <location
26014 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26015 line="43"
26016 column="54"/>
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 String createSectionHeader(T first, T second, List&lt;T> items, int firstIndex) {"
26023 errorLine2=" ~~~~~~">
26024 <location
26025 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26026 line="67"
26027 column="16"/>
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=" public String createSectionHeader(T first, T second, List&lt;T> items, int firstIndex) {"
26034 errorLine2=" ~~~~~~~">
26035 <location
26036 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26037 line="67"
26038 column="62"/>
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 String createSectionHeader(T first, T second) {"
26045 errorLine2=" ~~~~~~">
26046 <location
26047 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26048 line="71"
26049 column="16"/>
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 String createSectionFooter(T first, T second, List&lt;T> items, int firstIndex) {"
26056 errorLine2=" ~~~~~~">
26057 <location
26058 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26059 line="86"
26060 column="16"/>
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 String createSectionFooter(T first, T second, List&lt;T> items, int firstIndex) {"
26067 errorLine2=" ~~~~~~~">
26068 <location
26069 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26070 line="86"
26071 column="62"/>
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 createSectionFooter(T first, T second) {"
26078 errorLine2=" ~~~~~~">
26079 <location
26080 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26081 line="90"
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 createHeaderLabel(T item) {"
26089 errorLine2=" ~~~~~~">
26090 <location
26091 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26092 line="100"
26093 column="16"/>
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 createFooterLabel(T item) {"
26100 errorLine2=" ~~~~~~">
26101 <location
26102 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26103 line="110"
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 LocalizedCompare(Context context) {"
26111 errorLine2=" ~~~~~~~">
26112 <location
26113 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26114 line="130"
26115 column="33"/>
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 createSectionHeader(T first, T second) {"
26122 errorLine2=" ~~~~~~">
26123 <location
26124 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26125 line="136"
26126 column="16"/>
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 createHeaderLabel(T item) {"
26133 errorLine2=" ~~~~~~">
26134 <location
26135 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26136 line="153"
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=" protected String createHeaderLabel(final String label) {"
26144 errorLine2=" ~~~~~~">
26145 <location
26146 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26147 line="158"
26148 column="19"/>
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=" protected String createHeaderLabel(final String label) {"
26155 errorLine2=" ~~~~~~">
26156 <location
26157 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26158 line="158"
26159 column="50"/>
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 abstract String getString(T item);"
26166 errorLine2=" ~~~~~~">
26167 <location
26168 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26169 line="165"
26170 column="25"/>
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="180"
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="189"
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=" public BoundedIntCompare(Context context) {"
26199 errorLine2=" ~~~~~~~">
26200 <location
26201 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26202 line="206"
26203 column="34"/>
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=" public String createSectionHeader(T first, T second) {"
26210 errorLine2=" ~~~~~~">
26211 <location
26212 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26213 line="213"
26214 column="16"/>
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=" protected String createLabel(int stringId, T item) {"
26221 errorLine2=" ~~~~~~">
26222 <location
26223 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26224 line="222"
26225 column="19"/>
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 createHeaderLabel(T item) {"
26232 errorLine2=" ~~~~~~">
26233 <location
26234 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26235 line="227"
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 DurationCompare(Context context) {"
26243 errorLine2=" ~~~~~~~">
26244 <location
26245 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26246 line="240"
26247 column="32"/>
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 NumberOfSongsCompare(Context context) {"
26254 errorLine2=" ~~~~~~~">
26255 <location
26256 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26257 line="276"
26258 column="37"/>
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 NumberOfAlbumsCompare(Context context) {"
26265 errorLine2=" ~~~~~~~">
26266 <location
26267 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26268 line="300"
26269 column="38"/>
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=" public String createSectionHeader(T first, T second) {"
26276 errorLine2=" ~~~~~~">
26277 <location
26278 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26279 line="314"
26280 column="16"/>
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=" protected String createLabel(int stringId, T item) {"
26287 errorLine2=" ~~~~~~">
26288 <location
26289 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26290 line="337"
26291 column="19"/>
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 static &lt;T> TreeMap&lt;Integer, Section> createSections(final List&lt;T> list,"
26298 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~">
26299 <location
26300 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26301 line="355"
26302 column="23"/>
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 static &lt;T> TreeMap&lt;Integer, Section> createSections(final List&lt;T> list,"
26309 errorLine2=" ~~~~~~~">
26310 <location
26311 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26312 line="355"
26313 column="70"/>
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=" final IItemCompare&lt;T> comparator) {"
26320 errorLine2=" ~~~~~~~~~~~~~~~">
26321 <location
26322 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26323 line="356"
26324 column="70"/>
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 static IItemCompare&lt;Artist> createArtistComparison(final Context context) {"
26331 errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
26332 <location
26333 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26334 line="398"
26335 column="19"/>
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=" public static IItemCompare&lt;Artist> createArtistComparison(final Context context) {"
26342 errorLine2=" ~~~~~~~">
26343 <location
26344 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26345 line="398"
26346 column="69"/>
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 IItemCompare&lt;Song> createSongComparison(final Context context) {"
26353 errorLine2=" ~~~~~~~~~~~~~~~~~~">
26354 <location
26355 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26356 line="448"
26357 column="19"/>
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 IItemCompare&lt;Song> createSongComparison(final Context context) {"
26364 errorLine2=" ~~~~~~~">
26365 <location
26366 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26367 line="448"
26368 column="65"/>
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=" public SectionListContainer(final TreeMap&lt;Integer, SectionCreatorUtils.Section> sections,"
26375 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
26376 <location
26377 file="src/org/lineageos/eleven/sectionadapter/SectionListContainer.java"
26378 line="33"
26379 column="39"/>
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=" final List&lt;T> results) {"
26386 errorLine2=" ~~~~~~~">
26387 <location
26388 file="src/org/lineageos/eleven/sectionadapter/SectionListContainer.java"
26389 line="34"
26390 column="39"/>
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 SectionSeparatorItemDecoration(Context context,"
26397 errorLine2=" ~~~~~~~">
26398 <location
26399 file="src/org/lineageos/eleven/widgets/SectionSeparatorItemDecoration.java"
26400 line="49"
26401 column="43"/>
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=" TreeMap&lt;Integer, SectionCreatorUtils.Section> items) {"
26408 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
26409 <location
26410 file="src/org/lineageos/eleven/widgets/SectionSeparatorItemDecoration.java"
26411 line="50"
26412 column="43"/>
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=" protected void onCreate(final Bundle savedInstanceState) {"
26419 errorLine2=" ~~~~~~">
26420 <location
26421 file="src/org/lineageos/eleven/ui/activities/SettingsActivity.java"
26422 line="52"
26423 column="35"/>
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 boolean onOptionsItemSelected(final MenuItem item) {"
26430 errorLine2=" ~~~~~~~~">
26431 <location
26432 file="src/org/lineageos/eleven/ui/activities/SettingsActivity.java"
26433 line="65"
26434 column="48"/>
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=" public void onCreate(final Bundle savedInstanceState) {"
26441 errorLine2=" ~~~~~~">
26442 <location
26443 file="src/org/lineageos/eleven/ui/activities/SettingsActivity.java"
26444 line="85"
26445 column="36"/>
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 void onCreatePreferences(Bundle bundle, String rootKey) {"
26452 errorLine2=" ~~~~~~">
26453 <location
26454 file="src/org/lineageos/eleven/ui/activities/SettingsActivity.java"
26455 line="125"
26456 column="41"/>
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=" public void onCreatePreferences(Bundle bundle, String rootKey) {"
26463 errorLine2=" ~~~~~~">
26464 <location
26465 file="src/org/lineageos/eleven/ui/activities/SettingsActivity.java"
26466 line="125"
26467 column="56"/>
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=" public void onServiceConnected(final ComponentName name, final IBinder service) {"
26474 errorLine2=" ~~~~~~~~~~~~~">
26475 <location
26476 file="src/org/lineageos/eleven/ui/activities/SettingsActivity.java"
26477 line="147"
26478 column="46"/>
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 void onServiceConnected(final ComponentName name, final IBinder service) {"
26485 errorLine2=" ~~~~~~~">
26486 <location
26487 file="src/org/lineageos/eleven/ui/activities/SettingsActivity.java"
26488 line="147"
26489 column="72"/>
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 onServiceDisconnected(ComponentName name) {"
26496 errorLine2=" ~~~~~~~~~~~~~">
26497 <location
26498 file="src/org/lineageos/eleven/ui/activities/SettingsActivity.java"
26499 line="152"
26500 column="43"/>
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 onSharedPreferenceChanged(SharedPreferences sharedPreferences, String key) {"
26507 errorLine2=" ~~~~~~~~~~~~~~~~~">
26508 <location
26509 file="src/org/lineageos/eleven/ui/activities/SettingsActivity.java"
26510 line="157"
26511 column="47"/>
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 onSharedPreferenceChanged(SharedPreferences sharedPreferences, String key) {"
26518 errorLine2=" ~~~~~~">
26519 <location
26520 file="src/org/lineageos/eleven/ui/activities/SettingsActivity.java"
26521 line="157"
26522 column="84"/>
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 ShakeDetector(Listener listener) {"
26529 errorLine2=" ~~~~~~~~">
26530 <location
26531 file="src/org/lineageos/eleven/utils/ShakeDetector.java"
26532 line="61"
26533 column="26"/>
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 boolean start(SensorManager sensorManager) {"
26540 errorLine2=" ~~~~~~~~~~~~~">
26541 <location
26542 file="src/org/lineageos/eleven/utils/ShakeDetector.java"
26543 line="71"
26544 column="26"/>
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 onSensorChanged(SensorEvent event) {"
26551 errorLine2=" ~~~~~~~~~~~">
26552 <location
26553 file="src/org/lineageos/eleven/utils/ShakeDetector.java"
26554 line="102"
26555 column="33"/>
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 onAccuracyChanged(Sensor sensor, int accuracy) {"
26562 errorLine2=" ~~~~~~">
26563 <location
26564 file="src/org/lineageos/eleven/utils/ShakeDetector.java"
26565 line="289"
26566 column="35"/>
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 ShuffleButton(final Context context, final AttributeSet attrs) {"
26573 errorLine2=" ~~~~~~~">
26574 <location
26575 file="src/org/lineageos/eleven/widgets/ShuffleButton.java"
26576 line="31"
26577 column="32"/>
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 ShuffleButton(final Context context, final AttributeSet attrs) {"
26584 errorLine2=" ~~~~~~~~~~~~">
26585 <location
26586 file="src/org/lineageos/eleven/widgets/ShuffleButton.java"
26587 line="31"
26588 column="55"/>
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 void onClick(final View v) {"
26595 errorLine2=" ~~~~">
26596 <location
26597 file="src/org/lineageos/eleven/widgets/ShuffleButton.java"
26598 line="36"
26599 column="31"/>
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 SimpleBitmapWorkerTask(final String key, final ImageView imageView,"
26606 errorLine2=" ~~~~~~">
26607 <location
26608 file="src/org/lineageos/eleven/cache/SimpleBitmapWorkerTask.java"
26609 line="42"
26610 column="41"/>
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 SimpleBitmapWorkerTask(final String key, final ImageView imageView,"
26617 errorLine2=" ~~~~~~~~~">
26618 <location
26619 file="src/org/lineageos/eleven/cache/SimpleBitmapWorkerTask.java"
26620 line="42"
26621 column="59"/>
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=" final ImageType imageType, final Drawable fromDrawable,"
26628 errorLine2=" ~~~~~~~~~">
26629 <location
26630 file="src/org/lineageos/eleven/cache/SimpleBitmapWorkerTask.java"
26631 line="43"
26632 column="41"/>
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=" final ImageType imageType, final Drawable fromDrawable,"
26639 errorLine2=" ~~~~~~~~">
26640 <location
26641 file="src/org/lineageos/eleven/cache/SimpleBitmapWorkerTask.java"
26642 line="43"
26643 column="68"/>
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=" final Context context, final boolean scaleImgToView) {"
26650 errorLine2=" ~~~~~~~">
26651 <location
26652 file="src/org/lineageos/eleven/cache/SimpleBitmapWorkerTask.java"
26653 line="44"
26654 column="41"/>
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=" protected TransitionDrawable doInBackground(final String... params) {"
26661 errorLine2=" ~~~~~~~~~~~~~~~~~~">
26662 <location
26663 file="src/org/lineageos/eleven/cache/SimpleBitmapWorkerTask.java"
26664 line="49"
26665 column="15"/>
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=" protected TransitionDrawable doInBackground(final String... params) {"
26672 errorLine2=" ~~~~~~~~~">
26673 <location
26674 file="src/org/lineageos/eleven/cache/SimpleBitmapWorkerTask.java"
26675 line="49"
26676 column="55"/>
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=" protected void onPostExecute(TransitionDrawable transitionDrawable) {"
26683 errorLine2=" ~~~~~~~~~~~~~~~~~~">
26684 <location
26685 file="src/org/lineageos/eleven/cache/SimpleBitmapWorkerTask.java"
26686 line="65"
26687 column="34"/>
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=" protected Panel mTargetNavigatePanel;"
26694 errorLine2=" ~~~~~">
26695 <location
26696 file="src/org/lineageos/eleven/ui/activities/SlidingPanelActivity.java"
26697 line="61"
26698 column="15"/>
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=" protected void init(final Bundle savedInstanceState) {"
26705 errorLine2=" ~~~~~~">
26706 <location
26707 file="src/org/lineageos/eleven/ui/activities/SlidingPanelActivity.java"
26708 line="93"
26709 column="31"/>
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=" public void showPanel(Panel panel) {"
26716 errorLine2=" ~~~~~">
26717 <location
26718 file="src/org/lineageos/eleven/ui/activities/SlidingPanelActivity.java"
26719 line="218"
26720 column="27"/>
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=" public Panel getCurrentPanel() {"
26727 errorLine2=" ~~~~~">
26728 <location
26729 file="src/org/lineageos/eleven/ui/activities/SlidingPanelActivity.java"
26730 line="261"
26731 column="12"/>
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 AudioPlayerFragment getAudioPlayerFragment() {"
26738 errorLine2=" ~~~~~~~~~~~~~~~~~~~">
26739 <location
26740 file="src/org/lineageos/eleven/ui/activities/SlidingPanelActivity.java"
26741 line="292"
26742 column="15"/>
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 QueueFragment getQueueFragment() {"
26749 errorLine2=" ~~~~~~~~~~~~~">
26750 <location
26751 file="src/org/lineageos/eleven/ui/activities/SlidingPanelActivity.java"
26752 line="297"
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 setupQueueHeaderBar(final View.OnClickListener headerClickListener) {"
26760 errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
26761 <location
26762 file="src/org/lineageos/eleven/ui/activities/SlidingPanelActivity.java"
26763 line="316"
26764 column="46"/>
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=" void onPanelSlide(View panel, float slideOffset);"
26771 errorLine2=" ~~~~">
26772 <location
26773 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
26774 line="242"
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=" void onPanelCollapsed(View panel);"
26782 errorLine2=" ~~~~">
26783 <location
26784 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
26785 line="249"
26786 column="31"/>
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=" void onPanelExpanded(View panel);"
26793 errorLine2=" ~~~~">
26794 <location
26795 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
26796 line="256"
26797 column="30"/>
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=" void onPanelAnchored(View panel);"
26804 errorLine2=" ~~~~">
26805 <location
26806 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
26807 line="264"
26808 column="30"/>
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=" void onPanelHidden(View panel);"
26815 errorLine2=" ~~~~">
26816 <location
26817 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
26818 line="272"
26819 column="28"/>
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=" public void onPanelSlide(View panel, float slideOffset) {"
26826 errorLine2=" ~~~~">
26827 <location
26828 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
26829 line="281"
26830 column="34"/>
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=" public void onPanelCollapsed(View panel) {"
26837 errorLine2=" ~~~~">
26838 <location
26839 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
26840 line="285"
26841 column="38"/>
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=" public void onPanelExpanded(View panel) {"
26848 errorLine2=" ~~~~">
26849 <location
26850 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
26851 line="289"
26852 column="37"/>
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=" public void onPanelAnchored(View panel) {"
26859 errorLine2=" ~~~~">
26860 <location
26861 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
26862 line="293"
26863 column="37"/>
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=" public void onPanelHidden(View panel) {"
26870 errorLine2=" ~~~~">
26871 <location
26872 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
26873 line="297"
26874 column="35"/>
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 SlidingUpPanelLayout(Context context) {"
26881 errorLine2=" ~~~~~~~">
26882 <location
26883 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
26884 line="301"
26885 column="33"/>
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 SlidingUpPanelLayout(Context context, AttributeSet attrs) {"
26892 errorLine2=" ~~~~~~~">
26893 <location
26894 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
26895 line="305"
26896 column="33"/>
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 SlidingUpPanelLayout(Context context, AttributeSet attrs) {"
26903 errorLine2=" ~~~~~~~~~~~~">
26904 <location
26905 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
26906 line="305"
26907 column="50"/>
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 SlidingUpPanelLayout(Context context, AttributeSet attrs, int defStyle) {"
26914 errorLine2=" ~~~~~~~">
26915 <location
26916 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
26917 line="309"
26918 column="33"/>
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 SlidingUpPanelLayout(Context context, AttributeSet attrs, int defStyle) {"
26925 errorLine2=" ~~~~~~~~~~~~">
26926 <location
26927 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
26928 line="309"
26929 column="50"/>
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 void setPanelSlideListener(PanelSlideListener listener) {"
26936 errorLine2=" ~~~~~~~~~~~~~~~~~~">
26937 <location
26938 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
26939 line="442"
26940 column="39"/>
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 void setDragView(View dragView) {"
26947 errorLine2=" ~~~~">
26948 <location
26949 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
26950 line="451"
26951 column="29"/>
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 boolean onInterceptTouchEvent(MotionEvent ev) {"
26958 errorLine2=" ~~~~~~~~~~~">
26959 <location
26960 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
26961 line="732"
26962 column="42"/>
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 boolean onTouchEvent(MotionEvent ev) {"
26969 errorLine2=" ~~~~~~~~~~~">
26970 <location
26971 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
26972 line="776"
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=" protected boolean drawChild(Canvas canvas, View child, long drawingTime) {"
26980 errorLine2=" ~~~~~~">
26981 <location
26982 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
26983 line="908"
26984 column="33"/>
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=" protected boolean drawChild(Canvas canvas, View child, long drawingTime) {"
26991 errorLine2=" ~~~~">
26992 <location
26993 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
26994 line="908"
26995 column="48"/>
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 draw(Canvas c) {"
27002 errorLine2=" ~~~~~~">
27003 <location
27004 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
27005 line="970"
27006 column="22"/>
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=" protected ViewGroup.LayoutParams generateDefaultLayoutParams() {"
27013 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~">
27014 <location
27015 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
27016 line="997"
27017 column="15"/>
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=" protected ViewGroup.LayoutParams generateLayoutParams(ViewGroup.LayoutParams p) {"
27024 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~">
27025 <location
27026 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
27027 line="1002"
27028 column="15"/>
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 ViewGroup.LayoutParams generateLayoutParams(ViewGroup.LayoutParams p) {"
27035 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~">
27036 <location
27037 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
27038 line="1002"
27039 column="59"/>
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 checkLayoutParams(ViewGroup.LayoutParams p) {"
27046 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~">
27047 <location
27048 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
27049 line="1009"
27050 column="41"/>
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 ViewGroup.LayoutParams generateLayoutParams(AttributeSet attrs) {"
27057 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~">
27058 <location
27059 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
27060 line="1014"
27061 column="12"/>
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=" public ViewGroup.LayoutParams generateLayoutParams(AttributeSet attrs) {"
27068 errorLine2=" ~~~~~~~~~~~~">
27069 <location
27070 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
27071 line="1014"
27072 column="56"/>
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=" public Parcelable onSaveInstanceState() {"
27079 errorLine2=" ~~~~~~~~~~">
27080 <location
27081 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
27082 line="1019"
27083 column="12"/>
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=" public void onRestoreInstanceState(Parcelable state) {"
27090 errorLine2=" ~~~~~~~~~~">
27091 <location
27092 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
27093 line="1029"
27094 column="40"/>
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=" public LayoutParams(android.view.ViewGroup.LayoutParams source) {"
27101 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
27102 <location
27103 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
27104 line="1147"
27105 column="29"/>
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 LayoutParams(MarginLayoutParams source) {"
27112 errorLine2=" ~~~~~~~~~~~~~~~~~~">
27113 <location
27114 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
27115 line="1151"
27116 column="29"/>
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 LayoutParams(Context c, AttributeSet attrs) {"
27123 errorLine2=" ~~~~~~~">
27124 <location
27125 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
27126 line="1155"
27127 column="29"/>
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 LayoutParams(Context c, AttributeSet attrs) {"
27134 errorLine2=" ~~~~~~~~~~~~">
27135 <location
27136 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
27137 line="1155"
27138 column="40"/>
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 View onCreateView(LayoutInflater inflater, ViewGroup container,"
27145 errorLine2=" ~~~~">
27146 <location
27147 file="src/org/lineageos/eleven/ui/fragments/profile/SmartPlaylistFragment.java"
27148 line="56"
27149 column="12"/>
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 View onCreateView(LayoutInflater inflater, ViewGroup container,"
27156 errorLine2=" ~~~~~~~~~~~~~~">
27157 <location
27158 file="src/org/lineageos/eleven/ui/fragments/profile/SmartPlaylistFragment.java"
27159 line="56"
27160 column="30"/>
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 View onCreateView(LayoutInflater inflater, ViewGroup container,"
27167 errorLine2=" ~~~~~~~~~">
27168 <location
27169 file="src/org/lineageos/eleven/ui/fragments/profile/SmartPlaylistFragment.java"
27170 line="56"
27171 column="55"/>
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=" Bundle savedInstanceState) {"
27178 errorLine2=" ~~~~~~">
27179 <location
27180 file="src/org/lineageos/eleven/ui/fragments/profile/SmartPlaylistFragment.java"
27181 line="57"
27182 column="30"/>
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=" protected Config.IdType getFragmentSourceType() {"
27189 errorLine2=" ~~~~~~~~~~~~~">
27190 <location
27191 file="src/org/lineageos/eleven/ui/fragments/profile/SmartPlaylistFragment.java"
27192 line="63"
27193 column="15"/>
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 void onCreateOptionsMenu(@NonNull final Menu menu, final MenuInflater inflater) {"
27200 errorLine2=" ~~~~~~~~~~~~">
27201 <location
27202 file="src/org/lineageos/eleven/ui/fragments/profile/SmartPlaylistFragment.java"
27203 line="68"
27204 column="69"/>
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 boolean onOptionsItemSelected(final MenuItem item) {"
27211 errorLine2=" ~~~~~~~~">
27212 <location
27213 file="src/org/lineageos/eleven/ui/fragments/profile/SmartPlaylistFragment.java"
27214 line="89"
27215 column="48"/>
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 PagerAdapter.MusicFragments getMusicFragmentParent() {"
27222 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~">
27223 <location
27224 file="src/org/lineageos/eleven/ui/fragments/profile/SmartPlaylistFragment.java"
27225 line="130"
27226 column="12"/>
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=" protected abstract SmartPlaylistType getSmartPlaylistType();"
27233 errorLine2=" ~~~~~~~~~~~~~~~~~">
27234 <location
27235 file="src/org/lineageos/eleven/ui/fragments/profile/SmartPlaylistFragment.java"
27236 line="139"
27237 column="24"/>
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=" public String mBucketLabel;"
27244 errorLine2=" ~~~~~~">
27245 <location
27246 file="src/org/lineageos/eleven/model/Song.java"
27247 line="70"
27248 column="12"/>
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 Song(final long songId, final String songName, final String artistName,"
27255 errorLine2=" ~~~~~~">
27256 <location
27257 file="src/org/lineageos/eleven/model/Song.java"
27258 line="82"
27259 column="42"/>
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 Song(final long songId, final String songName, final String artistName,"
27266 errorLine2=" ~~~~~~">
27267 <location
27268 file="src/org/lineageos/eleven/model/Song.java"
27269 line="82"
27270 column="65"/>
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=" final String albumName, final long albumId, final int duration, final int year) {"
27277 errorLine2=" ~~~~~~">
27278 <location
27279 file="src/org/lineageos/eleven/model/Song.java"
27280 line="83"
27281 column="23"/>
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=" public Loader&lt;SectionListContainer&lt;Song>> onCreateLoader(final int id, final Bundle args) {"
27288 errorLine2=" ~~~~~~">
27289 <location
27290 file="src/org/lineageos/eleven/ui/fragments/SongFragment.java"
27291 line="54"
27292 column="82"/>
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 LoaderManager getFragmentLoaderManager() {"
27299 errorLine2=" ~~~~~~~~~~~~~">
27300 <location
27301 file="src/org/lineageos/eleven/ui/fragments/SongFragment.java"
27302 line="79"
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 SongListAdapter(final FragmentActivity context, final int layoutId, final long sourceId,"
27310 errorLine2=" ~~~~~~~~~~~~~~~~">
27311 <location
27312 file="src/org/lineageos/eleven/adapters/SongListAdapter.java"
27313 line="94"
27314 column="34"/>
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=" final Config.IdType sourceType,"
27321 errorLine2=" ~~~~~~~~~~~~~">
27322 <location
27323 file="src/org/lineageos/eleven/adapters/SongListAdapter.java"
27324 line="95"
27325 column="34"/>
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 Consumer&lt;Integer> onItemClickListener) {"
27332 errorLine2=" ~~~~~~~~~~~~~~~~~">
27333 <location
27334 file="src/org/lineageos/eleven/adapters/SongListAdapter.java"
27335 line="96"
27336 column="34"/>
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=" protected boolean showNowPlayingIndicator(final Song song, final int position) {"
27343 errorLine2=" ~~~~">
27344 <location
27345 file="src/org/lineageos/eleven/adapters/SongListAdapter.java"
27346 line="116"
27347 column="53"/>
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 void setPopupMenuClickedListener(IListener listener) {"
27354 errorLine2=" ~~~~~~~~~">
27355 <location
27356 file="src/org/lineageos/eleven/adapters/SongListAdapter.java"
27357 line="214"
27358 column="45"/>
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 void setCurrentlyPlayingTrack(MusicPlaybackTrack currentTrack) {"
27365 errorLine2=" ~~~~~~~~~~~~~~~~~~">
27366 <location
27367 file="src/org/lineageos/eleven/adapters/SongListAdapter.java"
27368 line="223"
27369 column="42"/>
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=" public long[] getSongIds() {"
27376 errorLine2=" ~~~~~~">
27377 <location
27378 file="src/org/lineageos/eleven/adapters/SongListAdapter.java"
27379 line="248"
27380 column="12"/>
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=" public Song getItem(int position) {"
27387 errorLine2=" ~~~~">
27388 <location
27389 file="src/org/lineageos/eleven/adapters/SongListAdapter.java"
27390 line="257"
27391 column="12"/>
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=" public void setData(List&lt;Song> songs) {"
27398 errorLine2=" ~~~~~~~~~~">
27399 <location
27400 file="src/org/lineageos/eleven/adapters/SongListAdapter.java"
27401 line="261"
27402 column="25"/>
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 SongLoader(final Context context) {"
27409 errorLine2=" ~~~~~~~">
27410 <location
27411 file="src/org/lineageos/eleven/loaders/SongLoader.java"
27412 line="59"
27413 column="29"/>
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 SongLoader(final Context context, final String selection) {"
27420 errorLine2=" ~~~~~~~">
27421 <location
27422 file="src/org/lineageos/eleven/loaders/SongLoader.java"
27423 line="67"
27424 column="29"/>
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 SongLoader(final Context context, final String selection) {"
27431 errorLine2=" ~~~~~~">
27432 <location
27433 file="src/org/lineageos/eleven/loaders/SongLoader.java"
27434 line="67"
27435 column="52"/>
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 List&lt;Song> loadInBackground() {"
27442 errorLine2=" ~~~~~~~~~~">
27443 <location
27444 file="src/org/lineageos/eleven/loaders/SongLoader.java"
27445 line="74"
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=" protected Cursor getCursor() {"
27453 errorLine2=" ~~~~~~">
27454 <location
27455 file="src/org/lineageos/eleven/loaders/SongLoader.java"
27456 line="129"
27457 column="15"/>
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 static Cursor makeSongCursor(final Context context, final String selection) {"
27464 errorLine2=" ~~~~~~">
27465 <location
27466 file="src/org/lineageos/eleven/loaders/SongLoader.java"
27467 line="159"
27468 column="19"/>
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 static Cursor makeSongCursor(final Context context, final String selection) {"
27475 errorLine2=" ~~~~~~~">
27476 <location
27477 file="src/org/lineageos/eleven/loaders/SongLoader.java"
27478 line="159"
27479 column="47"/>
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 static Cursor makeSongCursor(final Context context, final String selection) {"
27486 errorLine2=" ~~~~~~">
27487 <location
27488 file="src/org/lineageos/eleven/loaders/SongLoader.java"
27489 line="159"
27490 column="70"/>
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 static Cursor makeSongCursor(final Context context, final String selection,"
27497 errorLine2=" ~~~~~~">
27498 <location
27499 file="src/org/lineageos/eleven/loaders/SongLoader.java"
27500 line="173"
27501 column="19"/>
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=" public static Cursor makeSongCursor(final Context context, final String selection,"
27508 errorLine2=" ~~~~~~~">
27509 <location
27510 file="src/org/lineageos/eleven/loaders/SongLoader.java"
27511 line="173"
27512 column="47"/>
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="173"
27523 column="70"/>
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 SongPlayCount(final Context context) {"
27530 errorLine2=" ~~~~~~~">
27531 <location
27532 file="src/org/lineageos/eleven/provider/SongPlayCount.java"
27533 line="64"
27534 column="32"/>
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 void onCreate(final SQLiteDatabase db) {"
27541 errorLine2=" ~~~~~~~~~~~~~~">
27542 <location
27543 file="src/org/lineageos/eleven/provider/SongPlayCount.java"
27544 line="71"
27545 column="32"/>
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 void onDowngrade(SQLiteDatabase db) {"
27552 errorLine2=" ~~~~~~~~~~~~~~">
27553 <location
27554 file="src/org/lineageos/eleven/provider/SongPlayCount.java"
27555 line="96"
27556 column="29"/>
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 synchronized SongPlayCount getInstance(final Context context) {"
27563 errorLine2=" ~~~~~~~~~~~~~">
27564 <location
27565 file="src/org/lineageos/eleven/provider/SongPlayCount.java"
27566 line="106"
27567 column="32"/>
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 synchronized SongPlayCount getInstance(final Context context) {"
27574 errorLine2=" ~~~~~~~">
27575 <location
27576 file="src/org/lineageos/eleven/provider/SongPlayCount.java"
27577 line="106"
27578 column="64"/>
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 Cursor getTopPlayedResults(int numResults) {"
27585 errorLine2=" ~~~~~~">
27586 <location
27587 file="src/org/lineageos/eleven/provider/SongPlayCount.java"
27588 line="267"
27589 column="12"/>
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 long[] getTopPlayedResultsForList(long[] ids) {"
27596 errorLine2=" ~~~~~~">
27597 <location
27598 file="src/org/lineageos/eleven/provider/SongPlayCount.java"
27599 line="283"
27600 column="12"/>
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 long[] getTopPlayedResultsForList(long[] ids) {"
27607 errorLine2=" ~~~~~~">
27608 <location
27609 file="src/org/lineageos/eleven/provider/SongPlayCount.java"
27610 line="283"
27611 column="46"/>
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=" protected Song mSong;"
27618 errorLine2=" ~~~~">
27619 <location
27620 file="src/org/lineageos/eleven/utils/SongPopupMenuHelper.java"
27621 line="31"
27622 column="15"/>
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 SongPopupMenuHelper(Activity activity, FragmentManager fragmentManager) {"
27629 errorLine2=" ~~~~~~~~">
27630 <location
27631 file="src/org/lineageos/eleven/utils/SongPopupMenuHelper.java"
27632 line="33"
27633 column="32"/>
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 SongPopupMenuHelper(Activity activity, FragmentManager fragmentManager) {"
27640 errorLine2=" ~~~~~~~~~~~~~~~">
27641 <location
27642 file="src/org/lineageos/eleven/utils/SongPopupMenuHelper.java"
27643 line="33"
27644 column="51"/>
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 abstract Song getSong(int position);"
27651 errorLine2=" ~~~~">
27652 <location
27653 file="src/org/lineageos/eleven/utils/SongPopupMenuHelper.java"
27654 line="37"
27655 column="21"/>
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 PopupMenuHelper.PopupMenuType onPreparePopupMenu(int position) {"
27662 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
27663 <location
27664 file="src/org/lineageos/eleven/utils/SongPopupMenuHelper.java"
27665 line="40"
27666 column="12"/>
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 long[] getIdList() {"
27673 errorLine2=" ~~~~~~">
27674 <location
27675 file="src/org/lineageos/eleven/utils/SongPopupMenuHelper.java"
27676 line="56"
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=" protected String getArtistName() {"
27684 errorLine2=" ~~~~~~">
27685 <location
27686 file="src/org/lineageos/eleven/utils/SongPopupMenuHelper.java"
27687 line="61"
27688 column="15"/>
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=" protected void updateMenuIds(PopupMenuType type, TreeSet&lt;Integer> set) {"
27695 errorLine2=" ~~~~~~~~~~~~~">
27696 <location
27697 file="src/org/lineageos/eleven/utils/SongPopupMenuHelper.java"
27698 line="72"
27699 column="34"/>
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=" protected void updateMenuIds(PopupMenuType type, TreeSet&lt;Integer> set) {"
27706 errorLine2=" ~~~~~~~~~~~~~~~~">
27707 <location
27708 file="src/org/lineageos/eleven/utils/SongPopupMenuHelper.java"
27709 line="72"
27710 column="54"/>
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 SortedCursor(final Cursor cursor, final long[] order, final String columnName,"
27717 errorLine2=" ~~~~~~">
27718 <location
27719 file="src/org/lineageos/eleven/loaders/SortedCursor.java"
27720 line="49"
27721 column="31"/>
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=" public SortedCursor(final Cursor cursor, final long[] order, final String columnName,"
27728 errorLine2=" ~~~~~~">
27729 <location
27730 file="src/org/lineageos/eleven/loaders/SortedCursor.java"
27731 line="49"
27732 column="52"/>
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=" public SortedCursor(final Cursor cursor, final long[] order, final String columnName,"
27739 errorLine2=" ~~~~~~">
27740 <location
27741 file="src/org/lineageos/eleven/loaders/SortedCursor.java"
27742 line="49"
27743 column="72"/>
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=" final List&lt;?> extraData) {"
27750 errorLine2=" ~~~~~~~">
27751 <location
27752 file="src/org/lineageos/eleven/loaders/SortedCursor.java"
27753 line="50"
27754 column="31"/>
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=" public ArrayList&lt;Long> getMissingIds() {"
27761 errorLine2=" ~~~~~~~~~~~~~~~">
27762 <location
27763 file="src/org/lineageos/eleven/loaders/SortedCursor.java"
27764 line="108"
27765 column="12"/>
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 Collection&lt;Long> getExtraIds() {"
27772 errorLine2=" ~~~~~~~~~~~~~~~~">
27773 <location
27774 file="src/org/lineageos/eleven/loaders/SortedCursor.java"
27775 line="115"
27776 column="12"/>
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 Object getExtraData() {"
27783 errorLine2=" ~~~~~~">
27784 <location
27785 file="src/org/lineageos/eleven/loaders/SortedCursor.java"
27786 line="122"
27787 column="12"/>
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 String[] getColumnNames() {"
27794 errorLine2=" ~~~~~~~~">
27795 <location
27796 file="src/org/lineageos/eleven/loaders/SortedCursor.java"
27797 line="140"
27798 column="12"/>
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=" public String getString(int column) {"
27805 errorLine2=" ~~~~~~">
27806 <location
27807 file="src/org/lineageos/eleven/loaders/SortedCursor.java"
27808 line="145"
27809 column="12"/>
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 SquareFrame(Context context, AttributeSet attrs) {"
27816 errorLine2=" ~~~~~~~">
27817 <location
27818 file="src/org/lineageos/eleven/widgets/SquareFrame.java"
27819 line="22"
27820 column="24"/>
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 SquareFrame(Context context, AttributeSet attrs) {"
27827 errorLine2=" ~~~~~~~~~~~~">
27828 <location
27829 file="src/org/lineageos/eleven/widgets/SquareFrame.java"
27830 line="22"
27831 column="41"/>
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 SquareImageView(final Context context, final AttributeSet attrs) {"
27838 errorLine2=" ~~~~~~~">
27839 <location
27840 file="src/org/lineageos/eleven/widgets/SquareImageView.java"
27841 line="35"
27842 column="34"/>
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 SquareImageView(final Context context, final AttributeSet attrs) {"
27849 errorLine2=" ~~~~~~~~~~~~">
27850 <location
27851 file="src/org/lineageos/eleven/widgets/SquareImageView.java"
27852 line="35"
27853 column="57"/>
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 SquareView(final Context context, final AttributeSet attrs) {"
27860 errorLine2=" ~~~~~~~">
27861 <location
27862 file="src/org/lineageos/eleven/widgets/SquareView.java"
27863 line="38"
27864 column="29"/>
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 SquareView(final Context context, final AttributeSet attrs) {"
27871 errorLine2=" ~~~~~~~~~~~~">
27872 <location
27873 file="src/org/lineageos/eleven/widgets/SquareView.java"
27874 line="38"
27875 column="52"/>
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 SquareViewPager(Context context, AttributeSet attrs) {"
27882 errorLine2=" ~~~~~~~">
27883 <location
27884 file="src/org/lineageos/eleven/widgets/SquareViewPager.java"
27885 line="33"
27886 column="28"/>
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 SquareViewPager(Context context, AttributeSet attrs) {"
27893 errorLine2=" ~~~~~~~~~~~~">
27894 <location
27895 file="src/org/lineageos/eleven/widgets/SquareViewPager.java"
27896 line="33"
27897 column="45"/>
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 synchronized void initialize(final MediaPlayer player, final File f) {"
27904 errorLine2=" ~~~~~~~~~~~">
27905 <location
27906 file="src/org/lineageos/eleven/utils/SrtManager.java"
27907 line="74"
27908 column="47"/>
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 synchronized void initialize(final MediaPlayer player, final File f) {"
27915 errorLine2=" ~~~~">
27916 <location
27917 file="src/org/lineageos/eleven/utils/SrtManager.java"
27918 line="74"
27919 column="73"/>
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 boolean handleMessage(Message msg) {"
27926 errorLine2=" ~~~~~~~">
27927 <location
27928 file="src/org/lineageos/eleven/utils/SrtManager.java"
27929 line="194"
27930 column="34"/>
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 abstract void onTimedText(String txt);"
27937 errorLine2=" ~~~~~~">
27938 <location
27939 file="src/org/lineageos/eleven/utils/SrtManager.java"
27940 line="207"
27941 column="38"/>
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 static ArrayList&lt;SrtEntry> getSrtEntries(File f) {"
27948 errorLine2=" ~~~~~~~~~~~~~~~~~~~">
27949 <location
27950 file="src/org/lineageos/eleven/utils/SrtParser.java"
27951 line="49"
27952 column="19"/>
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 static ArrayList&lt;SrtEntry> getSrtEntries(File f) {"
27959 errorLine2=" ~~~~">
27960 <location
27961 file="src/org/lineageos/eleven/utils/SrtParser.java"
27962 line="49"
27963 column="53"/>
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=" protected SmartPlaylistType getSmartPlaylistType() {"
27970 errorLine2=" ~~~~~~~~~~~~~~~~~">
27971 <location
27972 file="src/org/lineageos/eleven/ui/fragments/profile/TopTracksFragment.java"
27973 line="55"
27974 column="15"/>
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 Loader&lt;SectionListContainer&lt;Song>> onCreateLoader(final int id, final Bundle args) {"
27981 errorLine2=" ~~~~~~">
27982 <location
27983 file="src/org/lineageos/eleven/ui/fragments/profile/TopTracksFragment.java"
27984 line="61"
27985 column="82"/>
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=" protected SongListAdapter createAdapter() {"
27992 errorLine2=" ~~~~~~~~~~~~~~~">
27993 <location
27994 file="src/org/lineageos/eleven/ui/fragments/profile/TopTracksFragment.java"
27995 line="71"
27996 column="15"/>
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 final View onCreateView(LayoutInflater inflater, ViewGroup container,"
28003 errorLine2=" ~~~~">
28004 <location
28005 file="src/org/lineageos/eleven/ui/fragments/profile/TopTracksFragment.java"
28006 line="80"
28007 column="18"/>
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 final View onCreateView(LayoutInflater inflater, ViewGroup container,"
28014 errorLine2=" ~~~~~~~~~~~~~~">
28015 <location
28016 file="src/org/lineageos/eleven/ui/fragments/profile/TopTracksFragment.java"
28017 line="80"
28018 column="36"/>
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=" public final View onCreateView(LayoutInflater inflater, ViewGroup container,"
28025 errorLine2=" ~~~~~~~~~">
28026 <location
28027 file="src/org/lineageos/eleven/ui/fragments/profile/TopTracksFragment.java"
28028 line="80"
28029 column="61"/>
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=" Bundle savedInstanceState) {"
28036 errorLine2=" ~~~~~~">
28037 <location
28038 file="src/org/lineageos/eleven/ui/fragments/profile/TopTracksFragment.java"
28039 line="81"
28040 column="36"/>
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=" public TopTracksAdapter(final FragmentActivity context, final int layoutId,"
28047 errorLine2=" ~~~~~~~~~~~~~~~~">
28048 <location
28049 file="src/org/lineageos/eleven/ui/fragments/profile/TopTracksFragment.java"
28050 line="96"
28051 column="39"/>
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=" final Consumer&lt;Integer> onItemClickListener) {"
28058 errorLine2=" ~~~~~~~~~~~~~~~~~">
28059 <location
28060 file="src/org/lineageos/eleven/ui/fragments/profile/TopTracksFragment.java"
28061 line="97"
28062 column="39"/>
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 void setupNoResultsContainer(NoResultsContainer empty) {"
28069 errorLine2=" ~~~~~~~~~~~~~~~~~~">
28070 <location
28071 file="src/org/lineageos/eleven/ui/fragments/profile/TopTracksFragment.java"
28072 line="110"
28073 column="41"/>
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 TopTracksLoader(final Context context, QueryType type) {"
28080 errorLine2=" ~~~~~~~">
28081 <location
28082 file="src/org/lineageos/eleven/loaders/TopTracksLoader.java"
28083 line="44"
28084 column="34"/>
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=" public TopTracksLoader(final Context context, QueryType type) {"
28091 errorLine2=" ~~~~~~~~~">
28092 <location
28093 file="src/org/lineageos/eleven/loaders/TopTracksLoader.java"
28094 line="44"
28095 column="51"/>
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=" protected Cursor getCursor() {"
28102 errorLine2=" ~~~~~~">
28103 <location
28104 file="src/org/lineageos/eleven/loaders/TopTracksLoader.java"
28105 line="51"
28106 column="15"/>
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=" public static SortedCursor makeTopTracksCursor(final Context context) {"
28113 errorLine2=" ~~~~~~~~~~~~">
28114 <location
28115 file="src/org/lineageos/eleven/loaders/TopTracksLoader.java"
28116 line="85"
28117 column="19"/>
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 static SortedCursor makeTopTracksCursor(final Context context) {"
28124 errorLine2=" ~~~~~~~">
28125 <location
28126 file="src/org/lineageos/eleven/loaders/TopTracksLoader.java"
28127 line="85"
28128 column="58"/>
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 static SortedCursor makeRecentTracksCursor(final Context context) {"
28135 errorLine2=" ~~~~~~~~~~~~">
28136 <location
28137 file="src/org/lineageos/eleven/loaders/TopTracksLoader.java"
28138 line="101"
28139 column="19"/>
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 static SortedCursor makeRecentTracksCursor(final Context context) {"
28146 errorLine2=" ~~~~~~~">
28147 <location
28148 file="src/org/lineageos/eleven/loaders/TopTracksLoader.java"
28149 line="101"
28150 column="61"/>
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=" public static SortedCursor makeSortedCursor(final Context context, final Cursor cursor,"
28157 errorLine2=" ~~~~~~~~~~~~">
28158 <location
28159 file="src/org/lineageos/eleven/loaders/TopTracksLoader.java"
28160 line="118"
28161 column="19"/>
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 makeSortedCursor(final Context context, final Cursor cursor,"
28168 errorLine2=" ~~~~~~~">
28169 <location
28170 file="src/org/lineageos/eleven/loaders/TopTracksLoader.java"
28171 line="118"
28172 column="55"/>
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 makeSortedCursor(final Context context, final Cursor cursor,"
28179 errorLine2=" ~~~~~~">
28180 <location
28181 file="src/org/lineageos/eleven/loaders/TopTracksLoader.java"
28182 line="118"
28183 column="78"/>
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 void onViewPositionChanged(View changedView, int left, int top, int dx, int dy) {"
28190 errorLine2=" ~~~~">
28191 <location
28192 file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
28193 line="147"
28194 column="43"/>
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 void onViewCaptured(View capturedChild, int activePointerId) {"
28201 errorLine2=" ~~~~">
28202 <location
28203 file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
28204 line="159"
28205 column="36"/>
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 void onViewReleased(View releasedChild, float xVel, float yVel) {"
28212 errorLine2=" ~~~~">
28213 <location
28214 file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
28215 line="182"
28216 column="36"/>
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 int getViewHorizontalDragRange(View child) {"
28223 errorLine2=" ~~~~">
28224 <location
28225 file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
28226 line="247"
28227 column="47"/>
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 int getViewVerticalDragRange(View child) {"
28234 errorLine2=" ~~~~">
28235 <location
28236 file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
28237 line="258"
28238 column="45"/>
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 abstract boolean tryCaptureView(View child, int pointerId);"
28245 errorLine2=" ~~~~">
28246 <location
28247 file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
28248 line="278"
28249 column="48"/>
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 int clampViewPositionHorizontal(View child, int left, int dx) {"
28256 errorLine2=" ~~~~">
28257 <location
28258 file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
28259 line="291"
28260 column="48"/>
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 int clampViewPositionVertical(View child, int top, int dy) {"
28267 errorLine2=" ~~~~">
28268 <location
28269 file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
28270 line="305"
28271 column="46"/>
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 static ViewDragHelper create(ViewGroup forParent, Callback cb) {"
28278 errorLine2=" ~~~~~~~~~~~~~~">
28279 <location
28280 file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
28281 line="327"
28282 column="19"/>
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 static ViewDragHelper create(ViewGroup forParent, Callback cb) {"
28289 errorLine2=" ~~~~~~~~~">
28290 <location
28291 file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
28292 line="327"
28293 column="41"/>
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 static ViewDragHelper create(ViewGroup forParent, Callback cb) {"
28300 errorLine2=" ~~~~~~~~">
28301 <location
28302 file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
28303 line="327"
28304 column="62"/>
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 static ViewDragHelper create(ViewGroup forParent, float sensitivity, Callback cb) {"
28311 errorLine2=" ~~~~~~~~~~~~~~">
28312 <location
28313 file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
28314 line="340"
28315 column="19"/>
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 static ViewDragHelper create(ViewGroup forParent, float sensitivity, Callback cb) {"
28322 errorLine2=" ~~~~~~~~~">
28323 <location
28324 file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
28325 line="340"
28326 column="41"/>
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, float sensitivity, Callback cb) {"
28333 errorLine2=" ~~~~~~~~">
28334 <location
28335 file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
28336 line="340"
28337 column="81"/>
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 void captureChildView(View childView, int activePointerId) {"
28344 errorLine2=" ~~~~">
28345 <location
28346 file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
28347 line="403"
28348 column="34"/>
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 boolean smoothSlideViewTo(View child, int finalLeft, int finalTop) {"
28355 errorLine2=" ~~~~">
28356 <location
28357 file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
28358 line="467"
28359 column="38"/>
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 boolean shouldInterceptTouchEvent(MotionEvent ev) {"
28366 errorLine2=" ~~~~~~~~~~~">
28367 <location
28368 file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
28369 line="785"
28370 column="46"/>
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 void processTouchEvent(MotionEvent ev) {"
28377 errorLine2=" ~~~~~~~~~~~">
28378 <location
28379 file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
28380 line="895"
28381 column="35"/>
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 boolean isViewUnder(View view, int x, int y) {"
28388 errorLine2=" ~~~~">
28389 <location
28390 file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
28391 line="1164"
28392 column="32"/>
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 View findTopChildUnder(int x, int y) {"
28399 errorLine2=" ~~~~">
28400 <location
28401 file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
28402 line="1182"
28403 column="12"/>
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 ViewPagerTabStrip(Context context) {"
28410 errorLine2=" ~~~~~~~">
28411 <location
28412 file="src/org/lineageos/eleven/widgets/ViewPagerTabStrip.java"
28413 line="38"
28414 column="30"/>
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 ViewPagerTabStrip(Context context, AttributeSet attrs) {"
28421 errorLine2=" ~~~~~~~">
28422 <location
28423 file="src/org/lineageos/eleven/widgets/ViewPagerTabStrip.java"
28424 line="42"
28425 column="30"/>
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 ViewPagerTabStrip(Context context, AttributeSet attrs) {"
28432 errorLine2=" ~~~~~~~~~~~~">
28433 <location
28434 file="src/org/lineageos/eleven/widgets/ViewPagerTabStrip.java"
28435 line="42"
28436 column="47"/>
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=" protected void onDraw(Canvas canvas) {"
28443 errorLine2=" ~~~~~~">
28444 <location
28445 file="src/org/lineageos/eleven/widgets/ViewPagerTabStrip.java"
28446 line="71"
28447 column="27"/>
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 ViewPagerTabs(Context context) {"
28454 errorLine2=" ~~~~~~~">
28455 <location
28456 file="src/org/lineageos/eleven/widgets/ViewPagerTabs.java"
28457 line="115"
28458 column="26"/>
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 ViewPagerTabs(Context context, AttributeSet attrs) {"
28465 errorLine2=" ~~~~~~~">
28466 <location
28467 file="src/org/lineageos/eleven/widgets/ViewPagerTabs.java"
28468 line="119"
28469 column="26"/>
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 ViewPagerTabs(Context context, AttributeSet attrs) {"
28476 errorLine2=" ~~~~~~~~~~~~">
28477 <location
28478 file="src/org/lineageos/eleven/widgets/ViewPagerTabs.java"
28479 line="119"
28480 column="43"/>
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 ViewPagerTabs(Context context, AttributeSet attrs, int defStyle) {"
28487 errorLine2=" ~~~~~~~">
28488 <location
28489 file="src/org/lineageos/eleven/widgets/ViewPagerTabs.java"
28490 line="123"
28491 column="26"/>
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=" public ViewPagerTabs(Context context, AttributeSet attrs, int defStyle) {"
28498 errorLine2=" ~~~~~~~~~~~~">
28499 <location
28500 file="src/org/lineageos/eleven/widgets/ViewPagerTabs.java"
28501 line="123"
28502 column="43"/>
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 void setViewPager(ViewPager viewPager) {"
28509 errorLine2=" ~~~~~~~~~">
28510 <location
28511 file="src/org/lineageos/eleven/widgets/ViewPagerTabs.java"
28512 line="144"
28513 column="30"/>
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 VisualizerView(Context context, AttributeSet attrs, int defStyle) {"
28520 errorLine2=" ~~~~~~~">
28521 <location
28522 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
28523 line="124"
28524 column="27"/>
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 VisualizerView(Context context, AttributeSet attrs, int defStyle) {"
28531 errorLine2=" ~~~~~~~~~~~~">
28532 <location
28533 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
28534 line="124"
28535 column="44"/>
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 VisualizerView(Context context, AttributeSet attrs) {"
28542 errorLine2=" ~~~~~~~">
28543 <location
28544 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
28545 line="128"
28546 column="27"/>
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 VisualizerView(Context context, AttributeSet attrs) {"
28553 errorLine2=" ~~~~~~~~~~~~">
28554 <location
28555 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
28556 line="128"
28557 column="44"/>
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 VisualizerView(Context context) {"
28564 errorLine2=" ~~~~~~~">
28565 <location
28566 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
28567 line="132"
28568 column="27"/>
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=" protected void onDraw(Canvas canvas) {"
28575 errorLine2=" ~~~~~~">
28576 <location
28577 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
28578 line="161"
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 void initialize(Context context) {"
28586 errorLine2=" ~~~~~~~">
28587 <location
28588 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
28589 line="169"
28590 column="28"/>
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 WrappedAsyncTaskLoader(Context context) {"
28597 errorLine2=" ~~~~~~~">
28598 <location
28599 file="src/org/lineageos/eleven/loaders/WrappedAsyncTaskLoader.java"
28600 line="38"
28601 column="35"/>
28602 </issue>
28603
28604</issues>