Eleven: lint: create initial baseline
Generated with running:
- ./gradlew lint
This helps with detecting new issues that may sneak in during
development (and also fixing existing ones).
Change-Id: Ifae04d248e42226088e43193b039f4fe28a015da
Signed-off-by: Alexander Martinz <amartinz@shiftphones.com>
diff --git a/lint-baseline.xml b/lint-baseline.xml
new file mode 100644
index 0000000..fb25b81
--- /dev/null
+++ b/lint-baseline.xml
@@ -0,0 +1,28659 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<issues format="6" by="lint 7.0.4" type="baseline" client="gradle" name="AGP (7.0.4)" variant="all" version="7.0.4">
+
+ <issue
+ id="MissingSuperCall"
+ message="Overriding method should call `super.onRequestPermissionsResult`"
+ errorLine1=" public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions,"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/HomeActivity.java"
+ line="510"
+ column="17"/>
+ </issue>
+
+ <issue
+ id="ScopedStorage"
+ message="WRITE_EXTERNAL_STORAGE no longer provides write access when targeting Android 11+, even when using `requestLegacyExternalStorage`"
+ errorLine1=" <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="AndroidManifest.xml"
+ line="37"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="DefaultLocale"
+ 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()`."
+ errorLine1=" private static final String CHINESE_LANGUAGE = Locale.CHINESE.getLanguage().toLowerCase();"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/locale/LocaleSet.java"
+ line="27"
+ column="81"/>
+ </issue>
+
+ <issue
+ id="DefaultLocale"
+ 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()`."
+ errorLine1=" private static final String JAPANESE_LANGUAGE = Locale.JAPANESE.getLanguage().toLowerCase();"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/locale/LocaleSet.java"
+ line="28"
+ column="83"/>
+ </issue>
+
+ <issue
+ id="DefaultLocale"
+ 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()`."
+ errorLine1=" private static final String KOREAN_LANGUAGE = Locale.KOREAN.getLanguage().toLowerCase();"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/locale/LocaleSet.java"
+ line="29"
+ column="79"/>
+ </issue>
+
+ <issue
+ id="DefaultLocale"
+ 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()`."
+ errorLine1=" mLanguage = mLocale.getLanguage().toLowerCase();"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/locale/LocaleSet.java"
+ line="45"
+ column="51"/>
+ </issue>
+
+ <issue
+ id="DefaultLocale"
+ 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()`."
+ errorLine1=" name = name.trim().toLowerCase();"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="1552"
+ column="28"/>
+ </issue>
+
+ <issue
+ id="OldTargetApi"
+ message="Not targeting the latest versions of Android; compatibility modes apply. Consider testing and updating this version. Consult the `android.os.Build.VERSION_CODES` javadoc for details."
+ errorLine1=" android:targetSdkVersion="30" />"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="AndroidManifest.xml"
+ line="27"
+ column="9"/>
+ </issue>
+
+ <issue
+ id="OldTargetApi"
+ message="Not targeting the latest versions of Android; compatibility modes apply. Consider testing and updating this version. Consult the android.os.Build.VERSION_CODES javadoc for details."
+ errorLine1=" targetSdkVersion 30"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="build.gradle"
+ line="45"
+ column="9"/>
+ </issue>
+
+ <issue
+ id="Range"
+ message="Value must be ≥ 0 (was -1)"
+ errorLine1=" columnIndex = cursor.getColumnIndexOrThrow(MediaStore.Audio.Playlists.Members.AUDIO_ID);"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="724"
+ column="13"/>
+ </issue>
+
+ <issue
+ id="Range"
+ message="Value must be ≥ 0 (was -1)"
+ errorLine1=" list[i] = cursor.getLong(columnIndex);"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="730"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="Range"
+ message="Value must be ≥ 0"
+ errorLine1=" final long lastUpdate = c.getLong(c.getColumnIndex(columnName));"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/PlaylistArtworkStore.java"
+ line="208"
+ column="51"/>
+ </issue>
+
+ <issue
+ id="Range"
+ message="Value must be ≥ 0"
+ errorLine1=" final int lastUpdatedSongCount = c.getInt(c.getColumnIndex(countColumnName));"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/PlaylistArtworkStore.java"
+ line="211"
+ column="59"/>
+ </issue>
+
+ <issue
+ id="Range"
+ message="Value must be ≥ 0"
+ errorLine1=" long id = playlistCursor.getLong(playlistCursor.getColumnIndex("
+ errorLine2=" ^">
+ <location
+ file="src/org/lineageos/eleven/cache/PlaylistWorkerTask.java"
+ line="186"
+ column="50"/>
+ </issue>
+
+ <issue
+ id="WrongConstant"
+ 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"
+ errorLine1=" return 0;"
+ errorLine2=" ~">
+ <location
+ file="src/org/lineageos/eleven/utils/EmptyCursor.java"
+ line="154"
+ column="16"/>
+ </issue>
+
+ <issue
+ id="StringFormatMatches"
+ message="Wrong argument type for formatting argument '#1' in `duration_format`: conversion is '`d`', received `String` (argument #2 in method call)"
+ errorLine1=" return String.format(durationFormat, hoursString, minutesString);"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="274"
+ column="46"/>
+ <location
+ file="res/values-ug/strings.xml"
+ line="137"
+ column="5"
+ message="Conflicting argument declaration here"/>
+ </issue>
+
+ <issue
+ id="StringFormatMatches"
+ message="Wrong argument type for formatting argument '#2' in `duration_format`: conversion is '`d`', received `String` (argument #3 in method call)"
+ errorLine1=" return String.format(durationFormat, hoursString, minutesString);"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="274"
+ column="59"/>
+ <location
+ file="res/values-ug/strings.xml"
+ line="137"
+ column="5"
+ message="Conflicting argument declaration here"/>
+ </issue>
+
+ <issue
+ id="StringFormatMatches"
+ message="Inconsistent formatting types for argument #1 in format string `duration_format` ('%1$d'): Found both '`d`' here and '`s`' in values-zh-rHK/strings.xml"
+ errorLine1=" <string name="duration_format"><xliff:g id="HOURS">%1$d</xliff:g> سائەت <xliff:g id="MINUTES">%2$d</xliff:g> مىنۇت</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ug/strings.xml"
+ line="137"
+ column="5"/>
+ <location
+ file="res/values-zh-rHK/strings.xml"
+ line="128"
+ column="5"
+ message="Conflicting argument type (`s') here"/>
+ </issue>
+
+ <issue
+ id="UnusedQuantity"
+ message="For language "cs" (Czech) the following quantities are not relevant: `many`"
+ errorLine1=" <plurals name="Nalbums">"
+ errorLine2=" ^">
+ <location
+ file="res/values-cs/plurals.xml"
+ line="19"
+ column="5"/>
+ </issue>
+
+ <issue
+ id="UnusedQuantity"
+ message="For language "sk" (Slovak) the following quantities are not relevant: `many`"
+ errorLine1=" <plurals name="Nalbums">"
+ errorLine2=" ^">
+ <location
+ file="res/values-sk/plurals.xml"
+ line="19"
+ column="5"/>
+ </issue>
+
+ <issue
+ id="UnusedQuantity"
+ message="For language "cs" (Czech) the following quantities are not relevant: `many`"
+ errorLine1=" <plurals name="Nsongs">"
+ errorLine2=" ^">
+ <location
+ file="res/values-cs/plurals.xml"
+ line="25"
+ column="5"/>
+ </issue>
+
+ <issue
+ id="UnusedQuantity"
+ message="For language "sk" (Slovak) the following quantities are not relevant: `many`"
+ errorLine1=" <plurals name="Nsongs">"
+ errorLine2=" ^">
+ <location
+ file="res/values-sk/plurals.xml"
+ line="25"
+ column="5"/>
+ </issue>
+
+ <issue
+ id="UnusedQuantity"
+ message="For language "cs" (Czech) the following quantities are not relevant: `many`"
+ errorLine1=" <plurals name="Nhours">"
+ errorLine2=" ^">
+ <location
+ file="res/values-cs/plurals.xml"
+ line="31"
+ column="5"/>
+ </issue>
+
+ <issue
+ id="UnusedQuantity"
+ message="For language "sk" (Slovak) the following quantities are not relevant: `many`"
+ errorLine1=" <plurals name="Nhours">"
+ errorLine2=" ^">
+ <location
+ file="res/values-sk/plurals.xml"
+ line="31"
+ column="5"/>
+ </issue>
+
+ <issue
+ id="UnusedQuantity"
+ message="For language "cs" (Czech) the following quantities are not relevant: `many`"
+ errorLine1=" <plurals name="Nminutes">"
+ errorLine2=" ^">
+ <location
+ file="res/values-cs/plurals.xml"
+ line="37"
+ column="5"/>
+ </issue>
+
+ <issue
+ id="UnusedQuantity"
+ message="For language "sk" (Slovak) the following quantities are not relevant: `many`"
+ errorLine1=" <plurals name="Nminutes">"
+ errorLine2=" ^">
+ <location
+ file="res/values-sk/plurals.xml"
+ line="37"
+ column="5"/>
+ </issue>
+
+ <issue
+ id="UnusedQuantity"
+ message="For language "cs" (Czech) the following quantities are not relevant: `many`"
+ errorLine1=" <plurals name="NNNtrackstoplaylist">"
+ errorLine2=" ^">
+ <location
+ file="res/values-cs/plurals.xml"
+ line="43"
+ column="5"/>
+ </issue>
+
+ <issue
+ id="UnusedQuantity"
+ message="For language "sk" (Slovak) the following quantities are not relevant: `many`"
+ errorLine1=" <plurals name="NNNtrackstoplaylist">"
+ errorLine2=" ^">
+ <location
+ file="res/values-sk/plurals.xml"
+ line="43"
+ column="5"/>
+ </issue>
+
+ <issue
+ id="UnusedQuantity"
+ message="For language "cs" (Czech) the following quantities are not relevant: `many`"
+ errorLine1=" <plurals name="NNNtracksfromplaylist">"
+ errorLine2=" ^">
+ <location
+ file="res/values-cs/plurals.xml"
+ line="49"
+ column="5"/>
+ </issue>
+
+ <issue
+ id="UnusedQuantity"
+ message="For language "sk" (Slovak) the following quantities are not relevant: `many`"
+ errorLine1=" <plurals name="NNNtracksfromplaylist">"
+ errorLine2=" ^">
+ <location
+ file="res/values-sk/plurals.xml"
+ line="49"
+ column="5"/>
+ </issue>
+
+ <issue
+ id="UnusedQuantity"
+ message="For language "cs" (Czech) the following quantities are not relevant: `many`"
+ errorLine1=" <plurals name="NNNtrackstoqueue">"
+ errorLine2=" ^">
+ <location
+ file="res/values-cs/plurals.xml"
+ line="55"
+ column="5"/>
+ </issue>
+
+ <issue
+ id="UnusedQuantity"
+ message="For language "sk" (Slovak) the following quantities are not relevant: `many`"
+ errorLine1=" <plurals name="NNNtrackstoqueue">"
+ errorLine2=" ^">
+ <location
+ file="res/values-sk/plurals.xml"
+ line="55"
+ column="5"/>
+ </issue>
+
+ <issue
+ id="UnusedQuantity"
+ message="For language "cs" (Czech) the following quantities are not relevant: `many`"
+ errorLine1=" <plurals name="NNNtracksdeleted">"
+ errorLine2=" ^">
+ <location
+ file="res/values-cs/plurals.xml"
+ line="61"
+ column="5"/>
+ </issue>
+
+ <issue
+ id="UnusedQuantity"
+ message="For language "sk" (Slovak) the following quantities are not relevant: `many`"
+ errorLine1=" <plurals name="NNNtracksdeleted">"
+ errorLine2=" ^">
+ <location
+ file="res/values-sk/plurals.xml"
+ line="61"
+ column="5"/>
+ </issue>
+
+ <issue
+ id="UnsupportedChromeOsHardware"
+ message="Expecting `android:required="false"` for this hardware feature that may not be supported by all Chrome OS devices"
+ errorLine1=" <uses-feature android:name="android.hardware.sensor.accelerometer" />"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="AndroidManifest.xml"
+ line="65"
+ column="6"/>
+ </issue>
+
+ <issue
+ id="IntentFilterExportedReceiver"
+ message="As of Android 12, `android:exported` must be set; use `true` to make the activity \
available to other apps, and `false` otherwise."
+ errorLine1=" <activity"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="AndroidManifest.xml"
+ line="117"
+ column="10"/>
+ </issue>
+
+ <issue
+ id="IntentFilterExportedReceiver"
+ message="As of Android 12, `android:exported` must be set; use `true` to make the activity \
available to other apps, and `false` otherwise."
+ errorLine1=" <receiver android:name="org.lineageos.eleven.MediaButtonIntentReceiver" >"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="AndroidManifest.xml"
+ line="198"
+ column="10"/>
+ </issue>
+
+ <issue
+ id="IntentFilterExportedReceiver"
+ message="As of Android 12, `android:exported` must be set; use `true` to make the activity \
available to other apps, and `false` otherwise."
+ errorLine1=" <receiver android:name=".locale.LocaleChangeReceiver">"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="AndroidManifest.xml"
+ line="204"
+ column="10"/>
+ </issue>
+
+ <issue
+ id="AllowBackup"
+ 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"
+ errorLine1=" android:allowBackup="true""
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="AndroidManifest.xml"
+ line="69"
+ column="9"/>
+ </issue>
+
+ <issue
+ id="Recycle"
+ message="This animation should be started with `#start()`"
+ errorLine1=" mValueAnimators[i] = new ValueAnimator();"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/VisualizerView.java"
+ line="178"
+ column="34"/>
+ </issue>
+
+ <issue
+ id="StaticFieldLeak"
+ message="This field leaks a context object"
+ errorLine1=" protected final Context mContext;"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
+ line="51"
+ column="5"/>
+ </issue>
+
+ <issue
+ id="StaticFieldLeak"
+ message="This `AsyncTask` class should be static or leaks might occur (anonymous android.os.AsyncTask)"
+ errorLine1=" new AsyncTask<Void, Void, BitmapWithColors>() {"
+ errorLine2=" ^">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/HomeActivity.java"
+ line="225"
+ column="13"/>
+ </issue>
+
+ <issue
+ id="StaticFieldLeak"
+ message="This `AsyncTask` class should be static or leaks might occur (anonymous android.os.AsyncTask)"
+ errorLine1=" ElevenUtils.execute(new AsyncTask<Void, Void, Void>() {"
+ errorLine2=" ^">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="134"
+ column="29"/>
+ </issue>
+
+ <issue
+ id="StaticFieldLeak"
+ message="This `AsyncTask` class should be static or leaks might occur (anonymous android.os.AsyncTask)"
+ errorLine1=" ElevenUtils.execute(new AsyncTask<Void, Void, Void>() {"
+ errorLine2=" ^">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="471"
+ column="29"/>
+ </issue>
+
+ <issue
+ id="StaticFieldLeak"
+ message="This `AsyncTask` class should be static or leaks might occur (anonymous android.os.AsyncTask)"
+ errorLine1=" ElevenUtils.execute(new AsyncTask<Void, Void, Void>() {"
+ errorLine2=" ^">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="493"
+ column="29"/>
+ </issue>
+
+ <issue
+ id="StaticFieldLeak"
+ message="This `AsyncTask` class should be static or leaks might occur (anonymous android.os.AsyncTask)"
+ errorLine1=" ElevenUtils.execute(new AsyncTask<Void, Void, Void>() {"
+ errorLine2=" ^">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="519"
+ column="29"/>
+ </issue>
+
+ <issue
+ id="StaticFieldLeak"
+ 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"
+ errorLine1=" private static LocalizedStore sInstance = null;"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/LocalizedStore.java"
+ line="53"
+ column="13"/>
+ </issue>
+
+ <issue
+ id="StaticFieldLeak"
+ 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"
+ errorLine1=" private static MusicDB sInstance = null;"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/MusicDB.java"
+ line="44"
+ column="13"/>
+ </issue>
+
+ <issue
+ id="StaticFieldLeak"
+ 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"
+ errorLine1=" private static PlaylistArtworkStore sInstance = null;"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/PlaylistArtworkStore.java"
+ line="33"
+ column="13"/>
+ </issue>
+
+ <issue
+ id="LogConditional"
+ message="The log call Log.d(...) should be conditional: surround with `if (Log.isLoggable(...))` or `if (BuildConfig.DEBUG) { ... }`"
+ errorLine1=" Log.d(TAG, "Locale Changed from: " + mCurrentLocales + " to " + localeSet);"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/locale/LocaleSetManager.java"
+ line="77"
+ column="9"/>
+ </issue>
+
+ <issue
+ id="LogConditional"
+ message="The log call Log.i(...) should be conditional: surround with `if (Log.isLoggable(...))` or `if (BuildConfig.DEBUG) { ... }`"
+ errorLine1=" Log.i(TAG, "AddressBook Labels [" + mLocales.toString() + "]: ""
+ errorLine2=" ^">
+ <location
+ file="src/org/lineageos/eleven/locale/LocaleUtils.java"
+ line="191"
+ column="9"/>
+ </issue>
+
+ <issue
+ id="HandlerLeak"
+ message="This `Handler` class should be static or leaks might occur (anonymous android.content.AsyncQueryHandler)"
+ errorLine1=" sAsyncQueryHandler = new AsyncQueryHandler(getContentResolver()) {"
+ errorLine2=" ^">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
+ line="222"
+ column="30"/>
+ </issue>
+
+ <issue
+ id="Overdraw"
+ 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`)"
+ errorLine1=" android:background="@color/activity_album_detail_background_color" >"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/layout/activity_album_detail.xml"
+ line="4"
+ column="5"/>
+ </issue>
+
+ <issue
+ id="Overdraw"
+ 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`)"
+ errorLine1=" android:background="@color/activity_artist_detail_background_color">"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/layout/activity_artist_detail.xml"
+ line="4"
+ column="5"/>
+ </issue>
+
+ <issue
+ id="Overdraw"
+ 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`)"
+ errorLine1=" android:background="@color/header_action_bar_color""
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/layout/header_bar.xml"
+ line="25"
+ column="5"/>
+ </issue>
+
+ <issue
+ id="UnusedResources"
+ message="The resource `R.dimen.list_item_header_size` appears to be unused"
+ errorLine1=" <dimen name="list_item_header_size">16.0sp</dimen>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values/dimens.xml"
+ line="39"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnusedResources"
+ message="The resource `R.layout.list_header` appears to be unused"
+ errorLine1="<TextView xmlns:android="http://schemas.android.com/apk/res/android""
+ errorLine2="^">
+ <location
+ file="res/layout/list_header.xml"
+ line="18"
+ column="1"/>
+ </issue>
+
+ <issue
+ id="UsableSpace"
+ message="Consider also using `StorageManager#getAllocatableBytes` and `allocateBytes` which will consider clearable cached data"
+ errorLine1=" return path.getUsableSpace();"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="605"
+ column="21"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `TAG` of class `AlbumArtPagerAdapter` requires synthetic accessor"
+ errorLine1=" Log.d(TAG, "[" + mFragment.mAudioId + "] Loading image: ""
+ errorLine2=" ~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/AlbumArtPagerAdapter.java"
+ line="283"
+ column="27"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mAudioId` of class `AlbumArtFragment` requires synthetic accessor"
+ errorLine1=" Log.d(TAG, "[" + mFragment.mAudioId + "] Loading image: ""
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/AlbumArtPagerAdapter.java"
+ line="283"
+ column="48"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `loadImageAsync` of class `AlbumArtFragment` requires synthetic accessor"
+ errorLine1=" mFragment.loadImageAsync(result);"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/AlbumArtPagerAdapter.java"
+ line="290"
+ column="17"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `TAG` of class `AlbumArtPagerAdapter` requires synthetic accessor"
+ errorLine1=" Log.d(TAG, "No Image found for audioId: " + mFragment.mAudioId);"
+ errorLine2=" ~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/AlbumArtPagerAdapter.java"
+ line="292"
+ column="23"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mAudioId` of class `AlbumArtFragment` requires synthetic accessor"
+ errorLine1=" Log.d(TAG, "No Image found for audioId: " + mFragment.mAudioId);"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/AlbumArtPagerAdapter.java"
+ line="292"
+ column="71"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mAlbumId` of class `AlbumDetailFragment` requires synthetic accessor"
+ errorLine1=" return new Album(mAlbumId, mAlbumName, mArtistName, -1, null);"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/AlbumDetailFragment.java"
+ line="97"
+ column="34"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mAlbumName` of class `AlbumDetailFragment` requires synthetic accessor"
+ errorLine1=" return new Album(mAlbumId, mAlbumName, mArtistName, -1, null);"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/AlbumDetailFragment.java"
+ line="97"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mArtistName` of class `AlbumDetailFragment` requires synthetic accessor"
+ errorLine1=" return new Album(mAlbumId, mAlbumName, mArtistName, -1, null);"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/AlbumDetailFragment.java"
+ line="97"
+ column="56"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mSongAdapter` of class `AlbumDetailFragment` requires synthetic accessor"
+ errorLine1=" return mSongAdapter.getItem(position);"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/AlbumDetailFragment.java"
+ line="153"
+ column="24"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mAlbumId` of class `AlbumDetailFragment` requires synthetic accessor"
+ errorLine1=" return mAlbumId;"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/AlbumDetailFragment.java"
+ line="158"
+ column="24"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mAdapter` of class `AlbumFragment` requires synthetic accessor"
+ errorLine1=" return mAdapter.getItem(position);"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/AlbumFragment.java"
+ line="96"
+ column="24"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mLoadingEmptyContainer` of class `ArtistDetailFragment` requires synthetic accessor"
+ errorLine1=" mLoadingEmptyContainer.showLoading();"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
+ line="78"
+ column="21"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mLoadingEmptyContainer` of class `ArtistDetailFragment` requires synthetic accessor"
+ errorLine1=" mLoadingEmptyContainer.setVisibility(View.GONE);"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
+ line="96"
+ column="21"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mSongAdapter` of class `ArtistDetailFragment` requires synthetic accessor"
+ errorLine1=" handler.post(() -> mSongAdapter.setData(data));"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
+ line="98"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mSongAdapter` of class `ArtistDetailFragment` requires synthetic accessor"
+ errorLine1=" mSongAdapter.unload();"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
+ line="103"
+ column="21"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mAlbumAdapter` of class `ArtistDetailFragment` requires synthetic accessor"
+ errorLine1=" handler.post(() -> mAlbumAdapter.setData(data));"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
+ line="125"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mAlbumAdapter` of class `ArtistDetailFragment` requires synthetic accessor"
+ errorLine1=" mAlbumAdapter.unload();"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
+ line="130"
+ column="21"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mArtistId` of class `ArtistDetailFragment` requires synthetic accessor"
+ errorLine1=" return new Artist(mArtistId, mArtistName, 0, 0);"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
+ line="174"
+ column="35"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mArtistName` of class `ArtistDetailFragment` requires synthetic accessor"
+ errorLine1=" return new Artist(mArtistId, mArtistName, 0, 0);"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
+ line="174"
+ column="46"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mHero` of class `ArtistDetailFragment` requires synthetic accessor"
+ errorLine1=" mHero.getViewTreeObserver().removeOnGlobalLayoutListener(this);"
+ errorLine2=" ~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
+ line="200"
+ column="25"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mArtistName` of class `ArtistDetailFragment` requires synthetic accessor"
+ errorLine1=" loadArtistImage(mArtistName, mHero, true);"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
+ line="202"
+ column="49"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mHero` of class `ArtistDetailFragment` requires synthetic accessor"
+ errorLine1=" loadArtistImage(mArtistName, mHero, true);"
+ errorLine2=" ~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
+ line="202"
+ column="62"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mSongAdapter` of class `ArtistDetailFragment` requires synthetic accessor"
+ errorLine1=" return mSongAdapter.getItem(position);"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
+ line="234"
+ column="24"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mAlbumAdapter` of class `ArtistDetailFragment` requires synthetic accessor"
+ errorLine1=" return mAlbumAdapter.getItem(position);"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
+ line="259"
+ column="24"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mAdapter` of class `ArtistFragment` requires synthetic accessor"
+ errorLine1=" return mAdapter.getItem(position);"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/ArtistFragment.java"
+ line="108"
+ column="24"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `TAG` of class `AudioPlayerFragment` requires synthetic accessor"
+ errorLine1=" Log.w(TAG, "Unexpected page position of " + position"
+ errorLine2=" ~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
+ line="377"
+ column="27"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `refreshCurrentTime` of class `AudioPlayerFragment` requires synthetic accessor"
+ errorLine1=" final long next = mAudioPlayer.get().refreshCurrentTime();"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
+ line="553"
+ column="35"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `queueNextRefresh` of class `AudioPlayerFragment` requires synthetic accessor"
+ errorLine1=" mAudioPlayer.get().queueNextRefresh(next);"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
+ line="554"
+ column="17"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `createAndSetAdapter` of class `AudioPlayerFragment` requires synthetic accessor"
+ errorLine1=" mReference.get().createAndSetAdapter();"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
+ line="584"
+ column="21"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `updateNowPlayingInfo` of class `AudioPlayerFragment` requires synthetic accessor"
+ errorLine1=" audioPlayerFragment.updateNowPlayingInfo();"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
+ line="588"
+ column="17"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mMainPlaybackControls` of class `AudioPlayerFragment` requires synthetic accessor"
+ errorLine1=" audioPlayerFragment.mMainPlaybackControls.updatePlayPauseState();"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
+ line="590"
+ column="37"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mVisualizerView` of class `AudioPlayerFragment` requires synthetic accessor"
+ errorLine1=" audioPlayerFragment.mVisualizerView.setPlaying(MusicUtils.isPlaying());"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
+ line="591"
+ column="37"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mMainPlaybackControls` of class `AudioPlayerFragment` requires synthetic accessor"
+ errorLine1=" audioPlayerFragment.mMainPlaybackControls.updateRepeatState();"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
+ line="595"
+ column="37"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mMainPlaybackControls` of class `AudioPlayerFragment` requires synthetic accessor"
+ errorLine1=" audioPlayerFragment.mMainPlaybackControls.updateShuffleState();"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
+ line="597"
+ column="37"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `createAndSetAdapter` of class `AudioPlayerFragment` requires synthetic accessor"
+ errorLine1=" audioPlayerFragment.createAndSetAdapter();"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
+ line="600"
+ column="17"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `createAndSetAdapter` of class `AudioPlayerFragment` requires synthetic accessor"
+ errorLine1=" audioPlayerFragment.createAndSetAdapter();"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
+ line="603"
+ column="17"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `pausePlayback` of class `AudioPreviewActivity` requires synthetic accessor"
+ errorLine1=" pausePlayback();"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
+ line="160"
+ column="21"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `onQueryComplete` of class `AudioPreviewActivity` requires synthetic accessor"
+ errorLine1=" AudioPreviewActivity.this.onQueryComplete(token, cursor);"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
+ line="225"
+ column="17"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mPlayPauseButtonContainer` of class `BaseActivity` requires synthetic accessor"
+ errorLine1=" baseActivity.mPlayPauseButtonContainer.updateState();"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/BaseActivity.java"
+ line="361"
+ column="30"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mPlayPauseProgressButton` of class `BaseActivity` requires synthetic accessor"
+ errorLine1=" baseActivity.mPlayPauseProgressButton.updateState();"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/BaseActivity.java"
+ line="362"
+ column="30"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `journalWriter` of class `DiskLruCache` requires synthetic accessor"
+ errorLine1=" if (journalWriter == null) {"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="170"
+ column="21"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `trimToSize` of class `DiskLruCache` requires synthetic accessor"
+ errorLine1=" trimToSize();"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="173"
+ column="17"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `journalRebuildRequired` of class `DiskLruCache` requires synthetic accessor"
+ errorLine1=" if (journalRebuildRequired()) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="174"
+ column="21"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `rebuildJournal` of class `DiskLruCache` requires synthetic accessor"
+ errorLine1=" rebuildJournal();"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="175"
+ column="21"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `redundantOpCount` of class `DiskLruCache` requires synthetic accessor"
+ errorLine1=" redundantOpCount = 0;"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="176"
+ column="21"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` constructor of class `Entry` requires synthetic accessor"
+ errorLine1=" entry = new Entry(key);"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="312"
+ column="21"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `readable` of class `Entry` requires synthetic accessor"
+ errorLine1=" entry.readable = true;"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="318"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `currentEditor` of class `Entry` requires synthetic accessor"
+ errorLine1=" entry.currentEditor = null;"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="319"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `setLengths` of class `Entry` requires synthetic accessor"
+ errorLine1=" entry.setLengths(parts);"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="320"
+ column="13"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` constructor of class `Editor` requires synthetic accessor"
+ errorLine1=" entry.currentEditor = new Editor(entry);"
+ errorLine2=" ~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="322"
+ column="35"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `currentEditor` of class `Entry` requires synthetic accessor"
+ errorLine1=" entry.currentEditor = new Editor(entry);"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="322"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `currentEditor` of class `Entry` requires synthetic accessor"
+ errorLine1=" if (entry.currentEditor == null) {"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="338"
+ column="23"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `lengths` of class `Entry` requires synthetic accessor"
+ errorLine1=" size += entry.lengths[t];"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="340"
+ column="35"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `currentEditor` of class `Entry` requires synthetic accessor"
+ errorLine1=" entry.currentEditor = null;"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="343"
+ column="23"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `currentEditor` of class `Entry` requires synthetic accessor"
+ errorLine1=" if (entry.currentEditor != null) {"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="375"
+ column="27"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `key` of class `Entry` requires synthetic accessor"
+ errorLine1=" writer.write(DIRTY + ' ' + entry.key + '\n');"
+ errorLine2=" ~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="376"
+ column="54"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `key` of class `Entry` requires synthetic accessor"
+ errorLine1=" writer.write(CLEAN + ' ' + entry.key + entry.getLengths() + '\n');"
+ errorLine2=" ~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="378"
+ column="54"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `readable` of class `Entry` requires synthetic accessor"
+ errorLine1=" if (!entry.readable) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="422"
+ column="20"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` constructor of class `Snapshot` requires synthetic accessor"
+ errorLine1=" return new Snapshot(ins);"
+ errorLine2=" ~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="452"
+ column="16"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `sequenceNumber` of class `Entry` requires synthetic accessor"
+ errorLine1=" || entry.sequenceNumber != expectedSequenceNumber)) {"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="468"
+ column="26"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` constructor of class `Entry` requires synthetic accessor"
+ errorLine1=" entry = new Entry(key);"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="472"
+ column="21"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `currentEditor` of class `Entry` requires synthetic accessor"
+ errorLine1=" } else if (entry.currentEditor != null) {"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="474"
+ column="26"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` constructor of class `Editor` requires synthetic accessor"
+ errorLine1=" Editor editor = new Editor(entry);"
+ errorLine2=" ~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="478"
+ column="25"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `currentEditor` of class `Entry` requires synthetic accessor"
+ errorLine1=" entry.currentEditor = editor;"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="479"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `entry` of class `Editor` requires synthetic accessor"
+ errorLine1=" Entry entry = editor.entry;"
+ errorLine2=" ~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="488"
+ column="30"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `currentEditor` of class `Entry` requires synthetic accessor"
+ errorLine1=" if (entry.currentEditor != editor) {"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="489"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `readable` of class `Entry` requires synthetic accessor"
+ errorLine1=" if (success && !entry.readable) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="494"
+ column="31"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `written` of class `Editor` requires synthetic accessor"
+ errorLine1=" if (!editor.written[i]) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="496"
+ column="29"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `lengths` of class `Entry` requires synthetic accessor"
+ errorLine1=" long oldLength = entry.lengths[i];"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="514"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `lengths` of class `Entry` requires synthetic accessor"
+ errorLine1=" entry.lengths[i] = newLength;"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="516"
+ column="27"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `currentEditor` of class `Entry` requires synthetic accessor"
+ errorLine1=" entry.currentEditor = null;"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="525"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `readable` of class `Entry` requires synthetic accessor"
+ errorLine1=" if (entry.readable | success) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="526"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `readable` of class `Entry` requires synthetic accessor"
+ errorLine1=" entry.readable = true;"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="527"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `key` of class `Entry` requires synthetic accessor"
+ errorLine1=" journalWriter.write(CLEAN + ' ' + entry.key + entry.getLengths() + '\n');"
+ errorLine2=" ~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="528"
+ column="53"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `sequenceNumber` of class `Entry` requires synthetic accessor"
+ errorLine1=" entry.sequenceNumber = nextSequenceNumber++;"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="530"
+ column="23"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `key` of class `Entry` requires synthetic accessor"
+ errorLine1=" lruEntries.remove(entry.key);"
+ errorLine2=" ~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="533"
+ column="37"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `key` of class `Entry` requires synthetic accessor"
+ errorLine1=" journalWriter.write(REMOVE + ' ' + entry.key + '\n');"
+ errorLine2=" ~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="534"
+ column="54"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `currentEditor` of class `Entry` requires synthetic accessor"
+ errorLine1=" if (entry == null || entry.currentEditor != null) {"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="564"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `lengths` of class `Entry` requires synthetic accessor"
+ errorLine1=" size -= entry.lengths[i];"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="573"
+ column="27"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `lengths` of class `Entry` requires synthetic accessor"
+ errorLine1=" entry.lengths[i] = 0;"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="574"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `currentEditor` of class `Entry` requires synthetic accessor"
+ errorLine1=" if (entry.currentEditor != null) {"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="618"
+ column="23"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `currentEditor` of class `Entry` requires synthetic accessor"
+ errorLine1=" entry.currentEditor.abort();"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="619"
+ column="23"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `readable` of class `Entry` requires synthetic accessor"
+ errorLine1=" this.written = (entry.readable) ? null : new boolean[valueCount];"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="693"
+ column="35"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `valueCount` of class `DiskLruCache` requires synthetic accessor"
+ errorLine1=" this.written = (entry.readable) ? null : new boolean[valueCount];"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="693"
+ column="66"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `valueCount` of class `DiskLruCache` requires synthetic accessor"
+ errorLine1=" if (index < 0 || index >= valueCount) {"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="704"
+ column="39"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `valueCount` of class `DiskLruCache` requires synthetic accessor"
+ errorLine1=" + "of " + valueCount);"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="707"
+ column="35"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `currentEditor` of class `Entry` requires synthetic accessor"
+ errorLine1=" if (entry.currentEditor != this) {"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="710"
+ column="27"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `readable` of class `Entry` requires synthetic accessor"
+ errorLine1=" if (!entry.readable) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="713"
+ column="28"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `directory` of class `DiskLruCache` requires synthetic accessor"
+ errorLine1=" directory.mkdirs();"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="723"
+ column="21"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `NULL_OUTPUT_STREAM` of class `DiskLruCache` requires synthetic accessor"
+ errorLine1=" return NULL_OUTPUT_STREAM;"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="728"
+ column="32"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` constructor of class `FaultHidingOutputStream` requires synthetic accessor"
+ errorLine1=" return new FaultHidingOutputStream(outputStream);"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="731"
+ column="24"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `completeEdit` of class `DiskLruCache` requires synthetic accessor"
+ errorLine1=" completeEdit(this, false);"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="741"
+ column="17"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `key` of class `Entry` requires synthetic accessor"
+ errorLine1=" remove(entry.key); // The previous entry is stale."
+ errorLine2=" ~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="742"
+ column="30"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `completeEdit` of class `DiskLruCache` requires synthetic accessor"
+ errorLine1=" completeEdit(this, true);"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="744"
+ column="17"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `completeEdit` of class `DiskLruCache` requires synthetic accessor"
+ errorLine1=" completeEdit(this, false);"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="753"
+ column="13"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `hasErrors` of class `Editor` requires synthetic accessor"
+ errorLine1=" hasErrors = true;"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="766"
+ column="21"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `hasErrors` of class `Editor` requires synthetic accessor"
+ errorLine1=" hasErrors = true;"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="775"
+ column="21"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `hasErrors` of class `Editor` requires synthetic accessor"
+ errorLine1=" hasErrors = true;"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="784"
+ column="21"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `hasErrors` of class `Editor` requires synthetic accessor"
+ errorLine1=" hasErrors = true;"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="793"
+ column="21"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `valueCount` of class `DiskLruCache` requires synthetic accessor"
+ errorLine1=" this.lengths = new long[valueCount];"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="824"
+ column="37"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `valueCount` of class `DiskLruCache` requires synthetic accessor"
+ errorLine1=" if (strings.length != valueCount) {"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="839"
+ column="35"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `directory` of class `DiskLruCache` requires synthetic accessor"
+ errorLine1=" return new File(directory, key + "." + i);"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="857"
+ column="29"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `directory` of class `DiskLruCache` requires synthetic accessor"
+ errorLine1=" return new File(directory, key + "." + i + ".tmp");"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="861"
+ column="29"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `updateVisualizerColor` of class `HomeActivity` requires synthetic accessor"
+ errorLine1=" updateVisualizerColor(bmc != null"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/HomeActivity.java"
+ line="235"
+ column="21"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `updateStatusBarColor` of class `HomeActivity` requires synthetic accessor"
+ errorLine1=" updateStatusBarColor(bmc != null"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/HomeActivity.java"
+ line="237"
+ column="21"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `initDiskCache` of class `ImageCache` requires synthetic accessor"
+ errorLine1=" initDiskCache(context);"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="139"
+ column="17"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mLruCache` of class `ImageCache` requires synthetic accessor"
+ errorLine1=" mLruCache.trimToSize(mLruCache.size() / 2);"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="191"
+ column="21"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mLruCache` of class `ImageCache` requires synthetic accessor"
+ errorLine1=" mLruCache.trimToSize(mLruCache.size() / 2);"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="191"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mDiskCache` of class `ImageCache` requires synthetic accessor"
+ errorLine1=" if (mDiskCache != null) {"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="475"
+ column="21"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mDiskCache` of class `ImageCache` requires synthetic accessor"
+ errorLine1=" if (!mDiskCache.isClosed()) {"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="477"
+ column="30"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mDiskCache` of class `ImageCache` requires synthetic accessor"
+ errorLine1=" mDiskCache.flush();"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="478"
+ column="29"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `TAG` of class `ImageCache` requires synthetic accessor"
+ errorLine1=" Log.e(TAG, "flush", e);"
+ errorLine2=" ~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="481"
+ column="31"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mDiskCache` of class `ImageCache` requires synthetic accessor"
+ errorLine1=" if (mDiskCache != null) {"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="499"
+ column="25"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mDiskCache` of class `ImageCache` requires synthetic accessor"
+ errorLine1=" mDiskCache.delete();"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="500"
+ column="25"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mDiskCache` of class `ImageCache` requires synthetic accessor"
+ errorLine1=" mDiskCache = null;"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="501"
+ column="25"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `TAG` of class `ImageCache` requires synthetic accessor"
+ errorLine1=" Log.e(TAG, "clearCaches", e);"
+ errorLine2=" ~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="504"
+ column="27"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mDiskCache` of class `ImageCache` requires synthetic accessor"
+ errorLine1=" if (mDiskCache != null) {"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="523"
+ column="21"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mDiskCache` of class `ImageCache` requires synthetic accessor"
+ errorLine1=" if (!mDiskCache.isClosed()) {"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="525"
+ column="30"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mDiskCache` of class `ImageCache` requires synthetic accessor"
+ errorLine1=" mDiskCache.close();"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="526"
+ column="29"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mDiskCache` of class `ImageCache` requires synthetic accessor"
+ errorLine1=" mDiskCache = null;"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="527"
+ column="29"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `TAG` of class `ImageCache` requires synthetic accessor"
+ errorLine1=" Log.e(TAG, "close", e);"
+ errorLine2=" ~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="530"
+ column="31"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `CHINESE_LANGUAGE` of class `LocaleSet` requires synthetic accessor"
+ errorLine1=" return CHINESE_LANGUAGE.equals(language) ||"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/locale/LocaleSet.java"
+ line="37"
+ column="20"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `JAPANESE_LANGUAGE` of class `LocaleSet` requires synthetic accessor"
+ errorLine1=" JAPANESE_LANGUAGE.equals(language) ||"
+ errorLine2=" ~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/locale/LocaleSet.java"
+ line="38"
+ column="21"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `KOREAN_LANGUAGE` of class `LocaleSet` requires synthetic accessor"
+ errorLine1=" KOREAN_LANGUAGE.equals(language);"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/locale/LocaleSet.java"
+ line="39"
+ column="21"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mLocaleSetManager` of class `LocalizedStore` requires synthetic accessor"
+ errorLine1=" if (msg.what == LOCALE_CHANGED && mLocaleSetManager.localeSetNeedsUpdate()) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/LocalizedStore.java"
+ line="98"
+ column="51"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mLocaleSetManager` of class `LocalizedStore` requires synthetic accessor"
+ errorLine1=" rebuildLocaleData(mLocaleSetManager.getSystemLocaleSet());"
+ errorLine2=" ~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/LocalizedStore.java"
+ line="99"
+ column="39"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `rebuildLocaleData` of class `LocalizedStore` requires synthetic accessor"
+ errorLine1=" rebuildLocaleData(mLocaleSetManager.getSystemLocaleSet());"
+ errorLine2=" ~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/LocalizedStore.java"
+ line="99"
+ column="21"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` member of class `SortData` requires synthetic accessor"
+ errorLine1=" SortData sortData = new SortData();"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/LocalizedStore.java"
+ line="347"
+ column="29"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `createOrderBy` of class `LocalizedStore` requires synthetic accessor"
+ errorLine1=" return createOrderBy(NAME_BUCKET, NAME, descending);"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/LocalizedStore.java"
+ line="561"
+ column="20"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `createOrderBy` of class `LocalizedStore` requires synthetic accessor"
+ errorLine1=" return createOrderBy(NAME_BUCKET, NAME, descending);"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/LocalizedStore.java"
+ line="589"
+ column="20"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `createOrderBy` of class `LocalizedStore` requires synthetic accessor"
+ errorLine1=" return createOrderBy(NAME_BUCKET, NAME, descending);"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/LocalizedStore.java"
+ line="615"
+ column="20"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `refreshCurrentTimeText` of class `MainPlaybackControls` requires synthetic accessor"
+ errorLine1=" refreshCurrentTimeText(progress);"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/MainPlaybackControls.java"
+ line="77"
+ column="21"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` constructor of class `ServiceStub` requires synthetic accessor"
+ errorLine1=" private final IBinder mBinder = new ServiceStub(this);"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="387"
+ column="37"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `releaseServiceUiAndStop` of class `MusicPlaybackService` requires synthetic accessor"
+ errorLine1=" releaseServiceUiAndStop();"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="728"
+ column="17"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `handleHeadsetHookClick` of class `MusicPlaybackService` requires synthetic accessor"
+ errorLine1=" handleHeadsetHookClick(ke.getEventTime());"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="742"
+ column="29"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `saveQueue` of class `MusicPlaybackService` requires synthetic accessor"
+ errorLine1=" saveQueue(true);"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="975"
+ column="25"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mQueueIsSaveable` of class `MusicPlaybackService` requires synthetic accessor"
+ errorLine1=" mQueueIsSaveable = false;"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="976"
+ column="25"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mMediaMountedCount` of class `MusicPlaybackService` requires synthetic accessor"
+ errorLine1=" mMediaMountedCount++;"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="979"
+ column="25"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mCardId` of class `MusicPlaybackService` requires synthetic accessor"
+ errorLine1=" mCardId = getCardId();"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="980"
+ column="25"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `getCardId` of class `MusicPlaybackService` requires synthetic accessor"
+ errorLine1=" mCardId = getCardId();"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="980"
+ column="35"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `reloadQueue` of class `MusicPlaybackService` requires synthetic accessor"
+ errorLine1=" reloadQueue();"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="981"
+ column="25"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mQueueIsSaveable` of class `MusicPlaybackService` requires synthetic accessor"
+ errorLine1=" mQueueIsSaveable = true;"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="982"
+ column="25"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `notifyChange` of class `MusicPlaybackService` requires synthetic accessor"
+ errorLine1=" notifyChange(QUEUE_CHANGED);"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="983"
+ column="25"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `notifyChange` of class `MusicPlaybackService` requires synthetic accessor"
+ errorLine1=" notifyChange(META_CHANGED);"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="984"
+ column="25"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mCurrentVolume` of class `MusicPlayerHandler` requires synthetic accessor"
+ errorLine1=" mPlayerHandler.mCurrentVolume = 0f;"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="2523"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mAppWidgetSmall` of class `MusicPlaybackService` requires synthetic accessor"
+ errorLine1=" mAppWidgetSmall.performUpdate(MusicPlaybackService.this, small);"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="2925"
+ column="17"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mAppWidgetLarge` of class `MusicPlaybackService` requires synthetic accessor"
+ errorLine1=" mAppWidgetLarge.performUpdate(MusicPlaybackService.this, large);"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="2928"
+ column="17"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mAppWidgetLargeAlternate` of class `MusicPlaybackService` requires synthetic accessor"
+ errorLine1=" mAppWidgetLargeAlternate.performUpdate(MusicPlaybackService.this, largeAlt);"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="2932"
+ column="17"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `handleCommandIntent` of class `MusicPlaybackService` requires synthetic accessor"
+ errorLine1=" handleCommandIntent(intent);"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="2934"
+ column="17"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mPlayer` of class `MusicPlaybackService` requires synthetic accessor"
+ errorLine1=" service.mPlayer.setVolume(mCurrentVolume);"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="3002"
+ column="33"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mPlayer` of class `MusicPlaybackService` requires synthetic accessor"
+ errorLine1=" service.mPlayer.setVolume(mCurrentVolume);"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="3011"
+ column="33"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `sendErrorMessage` of class `MusicPlaybackService` requires synthetic accessor"
+ errorLine1=" service.sendErrorMessage(info.mTrackName);"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="3016"
+ column="29"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `openCurrentAndNext` of class `MusicPlaybackService` requires synthetic accessor"
+ errorLine1=" service.openCurrentAndNext();"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="3022"
+ column="29"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mNextPlayPos` of class `MusicPlaybackService` requires synthetic accessor"
+ errorLine1=" service.setAndRecordPlayPos(service.mNextPlayPos);"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="3026"
+ column="61"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `setNextTrack` of class `MusicPlaybackService` requires synthetic accessor"
+ errorLine1=" service.setNextTrack();"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="3027"
+ column="25"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mCursor` of class `MusicPlaybackService` requires synthetic accessor"
+ errorLine1=" if (service.mCursor != null) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="3028"
+ column="37"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mCursor` of class `MusicPlaybackService` requires synthetic accessor"
+ errorLine1=" service.mCursor.close();"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="3029"
+ column="37"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mCursor` of class `MusicPlaybackService` requires synthetic accessor"
+ errorLine1=" service.mCursor = null;"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="3030"
+ column="37"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mPlayPos` of class `MusicPlaybackService` requires synthetic accessor"
+ errorLine1=" service.updateCursor(service.mPlaylist.get(service.mPlayPos).mId);"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="3032"
+ column="76"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mPlaylist` of class `MusicPlaybackService` requires synthetic accessor"
+ errorLine1=" service.updateCursor(service.mPlaylist.get(service.mPlayPos).mId);"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="3032"
+ column="54"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `updateCursor` of class `MusicPlaybackService` requires synthetic accessor"
+ errorLine1=" service.updateCursor(service.mPlaylist.get(service.mPlayPos).mId);"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="3032"
+ column="25"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `notifyChange` of class `MusicPlaybackService` requires synthetic accessor"
+ errorLine1=" service.notifyChange(META_CHANGED);"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="3033"
+ column="25"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mRepeatMode` of class `MusicPlaybackService` requires synthetic accessor"
+ errorLine1=" if (service.mRepeatMode == REPEAT_CURRENT) {"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="3036"
+ column="37"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mLyrics` of class `MusicPlaybackService` requires synthetic accessor"
+ errorLine1=" service.mLyrics = (String) msg.obj;"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="3044"
+ column="33"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `notifyChange` of class `MusicPlaybackService` requires synthetic accessor"
+ errorLine1=" service.notifyChange(NEW_LYRICS);"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="3045"
+ column="25"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `togglePlayPause` of class `MusicPlaybackService` requires synthetic accessor"
+ errorLine1=" service.togglePlayPause();"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="3066"
+ column="33"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mHeadsetHookWakeLock` of class `MusicPlaybackService` requires synthetic accessor"
+ errorLine1=" service.mHeadsetHookWakeLock.release();"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="3076"
+ column="33"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mHandler` of class `MultiPlayer` requires synthetic accessor"
+ errorLine1=" mHandler.obtainMessage(LYRICS, text).sendToTarget();"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="3170"
+ column="21"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mSession` of class `MusicPlaybackService` requires synthetic accessor"
+ errorLine1=" mSession.setQueue(items);"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="3722"
+ column="17"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` constructor of class `ServiceToken` requires synthetic accessor"
+ errorLine1=" ServiceToken token = new ServiceToken(context, binder);"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="119"
+ column="34"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mBinder` of class `ServiceToken` requires synthetic accessor"
+ errorLine1=" final ServiceBinder binder = token.mBinder;"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="133"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `discard` of class `ServiceToken` requires synthetic accessor"
+ errorLine1=" token.discard();"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="137"
+ column="9"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mBinder` of class `ServiceToken` requires synthetic accessor"
+ errorLine1=" IElevenService service = token != null ? token.mBinder.mServiceConnection : null;"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="202"
+ column="60"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mServiceConnection` of class `ServiceBinder` requires synthetic accessor"
+ errorLine1=" IElevenService service = token != null ? token.mBinder.mServiceConnection : null;"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="202"
+ column="68"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` member of class `Holder` requires synthetic accessor"
+ errorLine1=" final Holder mHolder = new Holder();"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/PagerAdapter.java"
+ line="73"
+ column="32"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mPlaylistId` of class `PlaylistDetailFragment` requires synthetic accessor"
+ errorLine1=" return new Playlist(mPlaylistId, getTitle(), 0);"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/PlaylistDetailFragment.java"
+ line="120"
+ column="37"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mAdapter` of class `PlaylistDetailFragment` requires synthetic accessor"
+ errorLine1=" return mAdapter.getItem(position);"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/PlaylistDetailFragment.java"
+ line="142"
+ column="24"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mPlaylistId` of class `PlaylistDetailFragment` requires synthetic accessor"
+ errorLine1=" return mPlaylistId;"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/PlaylistDetailFragment.java"
+ line="155"
+ column="24"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `remove` of class `PlaylistDetailFragment` requires synthetic accessor"
+ errorLine1=" remove(mSong);"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/PlaylistDetailFragment.java"
+ line="165"
+ column="17"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mPlaylistId` of class `PlaylistDetailFragment` requires synthetic accessor"
+ errorLine1=" MusicUtils.removeFromPlaylist(activity, mSong.mSongId, mPlaylistId);"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/PlaylistDetailFragment.java"
+ line="168"
+ column="76"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mAdapter` of class `PlaylistFragment` requires synthetic accessor"
+ errorLine1=" return mAdapter.getItem(position);"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/PlaylistFragment.java"
+ line="94"
+ column="24"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mAdapter` of class `QueueFragment` requires synthetic accessor"
+ errorLine1=" mSong = mAdapter.getItem(mSelectedPosition);"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/QueueFragment.java"
+ line="127"
+ column="25"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mAdapter` of class `QueueFragment` requires synthetic accessor"
+ errorLine1=" mReference.get().mAdapter.setCurrentlyPlayingTrack(MusicUtils.getCurrentTrack());"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/QueueFragment.java"
+ line="372"
+ column="34"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `doRepeat` of class `RepeatingImageButton` requires synthetic accessor"
+ errorLine1=" doRepeat(false);"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/RepeatingImageButton.java"
+ line="140"
+ column="13"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mFirstPanel` of class `SlidingPanelActivity` requires synthetic accessor"
+ errorLine1=" mFirstPanel.setSlidingEnabled(false);"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/SlidingPanelActivity.java"
+ line="155"
+ column="21"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mFirstPanel` of class `SlidingPanelActivity` requires synthetic accessor"
+ errorLine1=" mFirstPanel.setSlidingEnabled(true);"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/SlidingPanelActivity.java"
+ line="169"
+ column="17"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` member of class `DragHelperCallback` requires synthetic accessor"
+ errorLine1=" mDragHelper = ViewDragHelper.create(this, 0.5f, new DragHelperCallback());"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="380"
+ column="57"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mIsUnableToDrag` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" if (mIsUnableToDrag) {"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1039"
+ column="17"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mSlideableView` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" return child == mSlideableView;"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1043"
+ column="29"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mDragHelper` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" if (mDragHelper == null ||"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1048"
+ column="17"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mDragHelper` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" mDragHelper.getViewDragState() != ViewDragHelper.STATE_IDLE) {"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1049"
+ column="21"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mSlideOffset` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" mSlideOffset = computeSlideOffset(mSlideableView.getTop());"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1053"
+ column="13"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mSlideableView` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" mSlideOffset = computeSlideOffset(mSlideableView.getTop());"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1053"
+ column="47"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `computeSlideOffset` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" mSlideOffset = computeSlideOffset(mSlideableView.getTop());"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1053"
+ column="28"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mSlideOffset` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" if (mSlideOffset == 1) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1054"
+ column="17"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mSlideState` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" if (mSlideState != SlideState.EXPANDED) {"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1055"
+ column="21"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mSlideState` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" mSlideState = SlideState.EXPANDED;"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1057"
+ column="21"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mSlideableView` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" dispatchOnPanelExpanded(mSlideableView);"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1058"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mSlideOffset` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" } else if (mSlideOffset == 0) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1060"
+ column="24"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mSlideState` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" if (mSlideState != SlideState.COLLAPSED) {"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1061"
+ column="21"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mSlideState` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" mSlideState = SlideState.COLLAPSED;"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1062"
+ column="21"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mSlideableView` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" dispatchOnPanelCollapsed(mSlideableView);"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1063"
+ column="46"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mSlideOffset` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" } else if (mSlideOffset < 0) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1065"
+ column="24"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mSlideState` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" mSlideState = SlideState.HIDDEN;"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1066"
+ column="17"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mSlideableView` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" mSlideableView.setVisibility(View.GONE);"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1067"
+ column="17"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mSlideableView` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" dispatchOnPanelHidden(mSlideableView);"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1068"
+ column="39"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mSlideState` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" } else if (mSlideState != SlideState.ANCHORED) {"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1069"
+ column="24"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mSlideState` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" mSlideState = SlideState.ANCHORED;"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1071"
+ column="17"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mSlideableView` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" dispatchOnPanelAnchored(mSlideableView);"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1072"
+ column="41"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `onPanelDragged` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" onPanelDragged(top);"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1083"
+ column="13"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mIsSlidingUp` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" float direction = mIsSlidingUp ? -yvel : yvel;"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1092"
+ column="31"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `computePanelTopPosition` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" target = computePanelTopPosition(1.0f);"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1096"
+ column="26"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `computePanelTopPosition` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" target = computePanelTopPosition(0.0f);"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1099"
+ column="26"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mAnchorPoint` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" } else if (mAnchorPoint != 1 && mSlideOffset >= (1.f + mAnchorPoint) / 2) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1100"
+ column="24"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mAnchorPoint` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" } else if (mAnchorPoint != 1 && mSlideOffset >= (1.f + mAnchorPoint) / 2) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1100"
+ column="68"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mSlideOffset` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" } else if (mAnchorPoint != 1 && mSlideOffset >= (1.f + mAnchorPoint) / 2) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1100"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `computePanelTopPosition` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" target = computePanelTopPosition(1.0f);"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1102"
+ column="26"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mAnchorPoint` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" } else if (mAnchorPoint == 1 && mSlideOffset >= 0.5f) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1103"
+ column="24"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mSlideOffset` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" } else if (mAnchorPoint == 1 && mSlideOffset >= 0.5f) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1103"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `computePanelTopPosition` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" target = computePanelTopPosition(1.0f);"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1105"
+ column="26"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mAnchorPoint` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" } else if (mAnchorPoint != 1 && mSlideOffset >= mAnchorPoint) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1106"
+ column="24"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mAnchorPoint` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" } else if (mAnchorPoint != 1 && mSlideOffset >= mAnchorPoint) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1106"
+ column="61"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mSlideOffset` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" } else if (mAnchorPoint != 1 && mSlideOffset >= mAnchorPoint) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1106"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mAnchorPoint` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" target = computePanelTopPosition(mAnchorPoint);"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1107"
+ column="50"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `computePanelTopPosition` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" target = computePanelTopPosition(mAnchorPoint);"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1107"
+ column="26"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mAnchorPoint` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" } else if (mAnchorPoint != 1 && mSlideOffset >= mAnchorPoint / 2) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1108"
+ column="24"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mAnchorPoint` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" } else if (mAnchorPoint != 1 && mSlideOffset >= mAnchorPoint / 2) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1108"
+ column="61"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mSlideOffset` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" } else if (mAnchorPoint != 1 && mSlideOffset >= mAnchorPoint / 2) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1108"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mAnchorPoint` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" target = computePanelTopPosition(mAnchorPoint);"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1109"
+ column="50"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `computePanelTopPosition` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" target = computePanelTopPosition(mAnchorPoint);"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1109"
+ column="26"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `computePanelTopPosition` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" target = computePanelTopPosition(0.0f);"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1112"
+ column="26"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mDragHelper` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" if (mDragHelper != null) {"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1115"
+ column="17"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mDragHelper` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" mDragHelper.settleCapturedViewAt(releasedChild.getLeft(), target);"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1116"
+ column="17"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mSlideRange` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" return mSlideRange;"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1123"
+ column="20"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `computePanelTopPosition` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" final int collapsedTop = computePanelTopPosition(0.f);"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1128"
+ column="38"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `computePanelTopPosition` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" final int expandedTop = computePanelTopPosition(1.0f);"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1129"
+ column="37"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mIsSlidingUp` of class `SlidingUpPanelLayout` requires synthetic accessor"
+ errorLine1=" if (mIsSlidingUp) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1130"
+ column="17"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` constructor of class `SavedState` requires synthetic accessor"
+ errorLine1=" return new SavedState(in);"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1189"
+ column="32"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` method `onLoaded` of class `SrtManager` requires synthetic accessor"
+ errorLine1=" onLoaded(this, SrtParser.getSrtEntries(f));"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SrtManager.java"
+ line="90"
+ column="17"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `charset` of class `StrictLineReader` requires synthetic accessor"
+ errorLine1=" return new String(buf, 0, length, charset.name());"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/StrictLineReader.java"
+ line="153"
+ column="47"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mValueAnimators` of class `VisualizerView` requires synthetic accessor"
+ errorLine1=" mValueAnimators[i].cancel();"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/VisualizerView.java"
+ line="73"
+ column="25"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mValueAnimators` of class `VisualizerView` requires synthetic accessor"
+ errorLine1=" mValueAnimators[i].setFloatValues("
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/VisualizerView.java"
+ line="80"
+ column="25"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mFFTPoints` of class `VisualizerView` requires synthetic accessor"
+ errorLine1=" mFFTPoints[i * 4 + 1],"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/VisualizerView.java"
+ line="81"
+ column="33"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mFFTPoints` of class `VisualizerView` requires synthetic accessor"
+ errorLine1=" mFFTPoints[3] - (dbValue * 16f));"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/VisualizerView.java"
+ line="82"
+ column="33"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mValueAnimators` of class `VisualizerView` requires synthetic accessor"
+ errorLine1=" mValueAnimators[i].start();"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/VisualizerView.java"
+ line="83"
+ column="25"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mVisualizer` of class `VisualizerView` requires synthetic accessor"
+ errorLine1=" mVisualizer = new Visualizer(0);"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/VisualizerView.java"
+ line="92"
+ column="17"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `TAG` of class `VisualizerView` requires synthetic accessor"
+ errorLine1=" Log.e(TAG, "error initializing visualizer", e);"
+ errorLine2=" ~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/VisualizerView.java"
+ line="94"
+ column="23"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mVisualizer` of class `VisualizerView` requires synthetic accessor"
+ errorLine1=" mVisualizer.setEnabled(false);"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/VisualizerView.java"
+ line="98"
+ column="13"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mVisualizer` of class `VisualizerView` requires synthetic accessor"
+ errorLine1=" mVisualizer.setCaptureSize(66);"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/VisualizerView.java"
+ line="99"
+ column="13"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mVisualizerListener` of class `VisualizerView` requires synthetic accessor"
+ errorLine1=" mVisualizer.setDataCaptureListener(mVisualizerListener, Visualizer.getMaxCaptureRate(),"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/VisualizerView.java"
+ line="100"
+ column="48"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mVisualizer` of class `VisualizerView` requires synthetic accessor"
+ errorLine1=" mVisualizer.setDataCaptureListener(mVisualizerListener, Visualizer.getMaxCaptureRate(),"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/VisualizerView.java"
+ line="100"
+ column="13"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mVisualizer` of class `VisualizerView` requires synthetic accessor"
+ errorLine1=" mVisualizer.setEnabled(true);"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/VisualizerView.java"
+ line="102"
+ column="13"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mUnlinkVisualizer` of class `VisualizerView` requires synthetic accessor"
+ errorLine1=" AsyncTask.execute(mUnlinkVisualizer);"
+ errorLine2=" ~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/VisualizerView.java"
+ line="109"
+ column="31"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mVisualizer` of class `VisualizerView` requires synthetic accessor"
+ errorLine1=" if (mVisualizer != null) {"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/VisualizerView.java"
+ line="116"
+ column="17"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mVisualizer` of class `VisualizerView` requires synthetic accessor"
+ errorLine1=" mVisualizer.setEnabled(false);"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/VisualizerView.java"
+ line="117"
+ column="17"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mVisualizer` of class `VisualizerView` requires synthetic accessor"
+ errorLine1=" mVisualizer.release();"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/VisualizerView.java"
+ line="118"
+ column="17"/>
+ </issue>
+
+ <issue
+ id="SyntheticAccessor"
+ message="Access to `private` field `mVisualizer` of class `VisualizerView` requires synthetic accessor"
+ errorLine1=" mVisualizer = null;"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/VisualizerView.java"
+ line="119"
+ column="17"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Hljómplötur`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">Hljómplötur</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-is/strings.xml"
+ line="20"
+ column="5"/>
+ <location
+ file="res/values-is/strings.xml"
+ line="21"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `เพลง`, used in `app_name` and `page_songs`"
+ errorLine1=" <string name="app_name">เพลง</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-th/strings.xml"
+ line="20"
+ column="5"/>
+ <location
+ file="res/values-th/strings.xml"
+ line="23"
+ column="5"
+ message="Duplicates value in `app_name`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `음악`, used in `app_name` and `page_songs`"
+ errorLine1=" <string name="app_name">음악</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ko/strings.xml"
+ line="20"
+ column="5"/>
+ <location
+ file="res/values-ko/strings.xml"
+ line="23"
+ column="5"
+ message="Duplicates value in `app_name`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Albumoj`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">Albumoj</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-eo/strings.xml"
+ line="21"
+ column="5"/>
+ <location
+ file="res/values-eo/strings.xml"
+ line="23"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Artis`, used in `page_artists` and `sort_order_entry_artist`"
+ errorLine1=" <string name="page_artists">Artis</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-in/strings.xml"
+ line="21"
+ column="5"/>
+ <location
+ file="res/values-in/strings.xml"
+ line="47"
+ column="5"
+ message="Duplicates value in `page_artists`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Nghệ sĩ`, used in `page_artists` and `sort_order_entry_artist`"
+ errorLine1=" <string name="page_artists">Nghệ sĩ</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-vi/strings.xml"
+ line="21"
+ column="5"/>
+ <location
+ file="res/values-vi/strings.xml"
+ line="47"
+ column="5"
+ message="Duplicates value in `page_artists`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `سەنئەتكار`, used in `page_artists` and `sort_order_entry_artist`"
+ errorLine1=" <string name="page_artists">سەنئەتكار</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ug/strings.xml"
+ line="21"
+ column="5"/>
+ <location
+ file="res/values-ug/strings.xml"
+ line="47"
+ column="5"
+ message="Duplicates value in `page_artists`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `कलाकार`, used in `page_artists` and `sort_order_entry_artist`"
+ errorLine1=" <string name="page_artists">कलाकार</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-hi/strings.xml"
+ line="21"
+ column="5"/>
+ <location
+ file="res/values-hi/strings.xml"
+ line="47"
+ column="5"
+ message="Duplicates value in `page_artists`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `कलाकार`, used in `page_artists` and `sort_order_entry_artist`"
+ errorLine1=" <string name="page_artists">कलाकार</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-mr/strings.xml"
+ line="21"
+ column="5"/>
+ <location
+ file="res/values-mr/strings.xml"
+ line="47"
+ column="5"
+ message="Duplicates value in `page_artists`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `ศิลปิน`, used in `page_artists` and `sort_order_entry_artist`"
+ errorLine1=" <string name="page_artists">ศิลปิน</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-th/strings.xml"
+ line="21"
+ column="5"/>
+ <location
+ file="res/values-th/strings.xml"
+ line="47"
+ column="5"
+ message="Duplicates value in `page_artists`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `アーティスト`, used in `page_artists` and `sort_order_entry_artist`"
+ errorLine1=" <string name="page_artists">アーティスト</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ja/strings.xml"
+ line="21"
+ column="5"/>
+ <location
+ file="res/values-ja/strings.xml"
+ line="47"
+ column="5"
+ message="Duplicates value in `page_artists`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `演出者`, used in `page_artists` and `sort_order_entry_artist`"
+ errorLine1=" <string name="page_artists">演出者</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-zh-rTW/strings.xml"
+ line="21"
+ column="5"/>
+ <location
+ file="res/values-zh-rTW/strings.xml"
+ line="47"
+ column="5"
+ message="Duplicates value in `page_artists`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `艺术家`, used in `page_artists` and `sort_order_entry_artist`"
+ errorLine1=" <string name="page_artists">艺术家</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-zh-rCN/strings.xml"
+ line="21"
+ column="5"/>
+ <location
+ file="res/values-zh-rCN/strings.xml"
+ line="47"
+ column="5"
+ message="Duplicates value in `page_artists`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `아티스트`, used in `page_artists` and `sort_order_entry_artist`"
+ errorLine1=" <string name="page_artists">아티스트</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ko/strings.xml"
+ line="21"
+ column="5"/>
+ <location
+ file="res/values-ko/strings.xml"
+ line="47"
+ column="5"
+ message="Duplicates value in `page_artists`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Alba`, used in `header_albums`, `page_albums` and `sort_order_entry_album`"
+ errorLine1=" <string name="page_albums">Alba</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-cs/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-cs/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ <location
+ file="res/values-cs/strings.xml"
+ line="48"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Albaman`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">Albaman</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-gd/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-gd/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Alben`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">Alben</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-de/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-de/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Alben`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">Alben</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-lb/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-lb/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Albomlar`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">Albomlar</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-az/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-az/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Album`, used in `header_albums`, `page_albums` and `sort_order_entry_album`"
+ errorLine1=" <string name="page_albums">Album</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-da/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-da/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ <location
+ file="res/values-da/strings.xml"
+ line="48"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Album`, used in `header_albums`, `page_albums` and `sort_order_entry_album`"
+ errorLine1=" <string name="page_albums">Album</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-in/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-in/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ <location
+ file="res/values-in/strings.xml"
+ line="48"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Album`, used in `header_albums`, `page_albums` and `sort_order_entry_album`"
+ errorLine1=" <string name="page_albums">Album</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-it/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-it/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ <location
+ file="res/values-it/strings.xml"
+ line="48"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Album`, used in `header_albums`, `page_albums` and `sort_order_entry_album`"
+ errorLine1=" <string name="page_albums">Album</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-sv/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-sv/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ <location
+ file="res/values-sv/strings.xml"
+ line="48"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Album`, used in `header_albums`, `page_albums` and `sort_order_entry_album`"
+ errorLine1=" <string name="page_albums">Album</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-vi/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-vi/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ <location
+ file="res/values-vi/strings.xml"
+ line="48"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Albumai`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">Albumai</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-lt/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-lt/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Albumak`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">Albumak</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-eu/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-eu/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Albume`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">Albume</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ro/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-ro/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Albumer`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">Albumer</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-nb/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-nb/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Albumet`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">Albumet</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-sq/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-sq/strings.xml"
+ line="25"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Albumi`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">Albumi</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-hr/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-hr/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Albumi`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">Albumi</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-lv/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-lv/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Albumi`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">Albumi</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-sl/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-sl/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Albumid`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">Albumid</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-et/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-et/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Albumok`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">Albumok</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-hu/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-hu/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Albums`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">Albums</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-af/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-af/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Albums`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">Albums</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rAU/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-en-rAU/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Albums`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">Albums</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rCA/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-en-rCA/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Albums`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">Albums</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rGB/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-en-rGB/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Albums`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">Albums</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rIN/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-en-rIN/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Albums`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">Albums</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-fr/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-fr/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Albums`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">Albums</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-fy-rNL/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-fy-rNL/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Albums`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">Albums</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-nl/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-nl/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Albumy`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">Albumy</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-pl/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-pl/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Albumy`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">Albumy</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-sk/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-sk/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Albümler`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">Albümler</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-tr/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-tr/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Casgliadau`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">Casgliadau</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-cy/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-cy/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Àlbums`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">Àlbums</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ca/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-ca/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Álbumes`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">Álbumes</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ast-rES/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-ast-rES/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Álbumes`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">Álbumes</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-es-rUS/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-es-rUS/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Álbumes`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">Álbumes</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-es/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-es/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Álbums`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">Álbums</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-gl/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-gl/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Álbuns`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">Álbuns</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-pt-rBR/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-pt-rBR/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Álbuns`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">Álbuns</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-pt-rPT/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-pt-rPT/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Άλμπουμ`, used in `header_albums`, `page_albums` and `sort_order_entry_album`"
+ errorLine1=" <string name="page_albums">Άλμπουμ</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-el/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-el/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ <location
+ file="res/values-el/strings.xml"
+ line="48"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Албуми`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">Албуми</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-bg/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-bg/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Албуми`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">Албуми</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-sr/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-sr/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Альбоми`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">Альбоми</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-uk/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-uk/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Альбомы`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">Альбомы</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-be/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-be/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Альбомы`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">Альбомы</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ru/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-ru/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `אלבומים`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">אלבומים</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-iw/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-iw/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `آلبومها`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">آلبومها</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-fa/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-fa/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `ألبومات`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">ألبومات</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ar/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-ar/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `ئالبۇم`, used in `header_albums`, `page_albums` and `sort_order_entry_album`"
+ errorLine1=" <string name="page_albums">ئالبۇم</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ug/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-ug/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ <location
+ file="res/values-ug/strings.xml"
+ line="48"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `ئەلبوم`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">ئەلبوم</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ku/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-ku/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `अल्बम्स`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">अल्बम्स</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-mr/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-mr/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `एल्बम`, used in `header_albums`, `page_albums` and `sort_order_entry_album`"
+ errorLine1=" <string name="page_albums">एल्बम</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-hi/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-hi/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ <location
+ file="res/values-hi/strings.xml"
+ line="48"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `এলবামসমূহ`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">এলবামসমূহ</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-as/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-as/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `આલબ્મ્સ`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">આલબ્મ્સ</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-gu/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-gu/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `ଆଲବମଗୁଡିକ`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">ଆଲବମଗୁଡିକ</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-or/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-or/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `ஆல்பங்கள்`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">ஆல்பங்கள்</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ta/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-ta/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `ఆల్బమ్లు`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">ఆల్బమ్లు</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-te/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-te/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `ആൽബങ്ങൾ`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">ആൽബങ്ങൾ</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ml/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-ml/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `อัลบั้ม`, used in `header_albums`, `page_albums` and `sort_order_entry_album`"
+ errorLine1=" <string name="page_albums">อัลบั้ม</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-th/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-th/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ <location
+ file="res/values-th/strings.xml"
+ line="48"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `アルバム`, used in `header_albums`, `page_albums` and `sort_order_entry_album`"
+ errorLine1=" <string name="page_albums">アルバム</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ja/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-ja/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ <location
+ file="res/values-ja/strings.xml"
+ line="48"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `专辑`, used in `header_albums`, `page_albums` and `sort_order_entry_album`"
+ errorLine1=" <string name="page_albums">专辑</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-zh-rCN/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-zh-rCN/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ <location
+ file="res/values-zh-rCN/strings.xml"
+ line="48"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `專輯`, used in `header_albums`, `page_albums` and `sort_order_entry_album`"
+ errorLine1=" <string name="page_albums">專輯</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-zh-rTW/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-zh-rTW/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ <location
+ file="res/values-zh-rTW/strings.xml"
+ line="48"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `앨범`, used in `header_albums`, `page_albums` and `sort_order_entry_album`"
+ errorLine1=" <string name="page_albums">앨범</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ko/strings.xml"
+ line="22"
+ column="5"/>
+ <location
+ file="res/values-ko/strings.xml"
+ line="26"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ <location
+ file="res/values-ko/strings.xml"
+ line="48"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Albums`, used in `header_albums` and `page_albums`"
+ errorLine1=" <string name="page_albums">Albums</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values/strings.xml"
+ line="25"
+ column="5"/>
+ <location
+ file="res/values/strings.xml"
+ line="31"
+ column="5"
+ message="Duplicates value in `page_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `隨機播放`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">隨機播放</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-zh-rHK/strings.xml"
+ line="25"
+ column="5"/>
+ <location
+ file="res/values-zh-rHK/strings.xml"
+ line="80"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Albumi`, used in `header_albums` and `sort_order_entry_album`"
+ errorLine1=" <string name="header_albums">Albumi</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-fi/strings.xml"
+ line="26"
+ column="5"/>
+ <location
+ file="res/values-fi/strings.xml"
+ line="48"
+ column="5"
+ message="Duplicates value in `header_albums`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `ಷಫಲ್`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">ಷಫಲ್</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-kn/strings.xml"
+ line="28"
+ column="5"/>
+ <location
+ file="res/values-kn/strings.xml"
+ line="87"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Acak`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">Acak</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-in/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-in/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Air thuaiream`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">Air thuaiream</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-gd/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-gd/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Al debalu`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">Al debalu</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ast-rES/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-ast-rES/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Aleatório`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">Aleatório</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-pt-rBR/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-pt-rBR/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Ao chou`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">Ao chou</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-gl/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-gl/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Barreja`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">Barreja</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ca/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-ca/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Bland`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">Bland</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-da/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-da/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Blanda`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">Blanda</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-sv/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-sv/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Cymysgu`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">Cymysgu</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-cy/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-cy/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Jaukt`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">Jaukt</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-lv/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-lv/strings.xml"
+ line="86"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Juhuesitus`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">Juhuesitus</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-et/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-et/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Karıştır`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">Karıştır</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-tr/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-tr/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Lecture aléatoire`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">Lecture aléatoire</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-fr/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-fr/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Losowo`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">Losowo</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-pl/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-pl/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Maišyti`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">Maišyti</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-lt/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-lt/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Mezclar`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">Mezclar</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-es/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-es/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Miješaj`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">Miješaj</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-hr/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-hr/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Mjokselje`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">Mjokselje</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-fy-rNL/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-fy-rNL/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Mëschen`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">Mëschen</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-lb/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-lb/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Nahastu`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">Nahastu</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-eu/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-eu/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Náhodně`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">Náhodně</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-cs/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-cs/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Phát ngẫu nhiên`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">Phát ngẫu nhiên</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-vi/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-vi/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Prehrať náhodne`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">Prehrať náhodne</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-sk/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-sk/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Premešaj`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">Premešaj</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-sl/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-sl/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Qarışdır`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">Qarışdır</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-az/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-az/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Reproduzir aleatoriamente`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">Reproduzir aleatoriamente</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-pt-rPT/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-pt-rPT/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Riproduzione casuale`, used in `accessibility_shuffle_all`, `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">Riproduzione casuale</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-it/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-it/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ <location
+ file="res/values-it/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Sekoita`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">Sekoita</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-fi/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-fi/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Shuffle`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">Shuffle</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rAU/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-en-rAU/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Shuffle`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">Shuffle</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rCA/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-en-rCA/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Shuffle`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">Shuffle</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rGB/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-en-rGB/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Shuffle`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">Shuffle</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rIN/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-en-rIN/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Shuffle`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">Shuffle</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-nb/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-nb/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Skommel`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">Skommel</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-af/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-af/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Zufällige Wiedergabe`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">Zufällige Wiedergabe</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-de/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-de/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Τυχαία αναπαραγωγή`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">Τυχαία αναπαραγωγή</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-el/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-el/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Насумично`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">Насумично</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-sr/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-sr/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Перамяшаць`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">Перамяшаць</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-be/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-be/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Перемешать`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">Перемешать</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ru/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-ru/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Перемішати`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">Перемішати</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-uk/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-uk/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Разбъркване`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">Разбъркване</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-bg/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-bg/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `ערבב`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">ערבב</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-iw/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-iw/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `تصادفی`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">تصادفی</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-fa/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-fa/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `تەرتىپسىز`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">تەرتىپسىز</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ug/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-ug/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `خلْط`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">خلْط</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ar/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-ar/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `शफल`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">शफल</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-mr/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-mr/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `शफ़ल करें`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">शफ़ल करें</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-hi/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-hi/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `সানমিহলি কৰক`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">সানমিহলি কৰক</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-as/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-as/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `પીસો`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">પીસો</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-gu/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-gu/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `ସଫଲ୍`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">ସଫଲ୍</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-or/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-or/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `குலை`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">குலை</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ta/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-ta/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `మార్చు`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">మార్చు</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-te/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-te/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `ഷഫിൾ ചെയ്യുക`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">ഷഫിൾ ചെയ്യുക</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ml/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-ml/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `สลับ`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">สลับ</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-th/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-th/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `シャッフル`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">シャッフル</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ja/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-ja/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `隨機播放`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">隨機播放</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-zh-rTW/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-zh-rTW/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `셔플`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">셔플</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ko/strings.xml"
+ line="29"
+ column="5"/>
+ <location
+ file="res/values-ko/strings.xml"
+ line="88"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Acak semua`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">Acak semua</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-in/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-in/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Alles mjokselje`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">Alles mjokselje</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-fy-rNL/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-fy-rNL/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Alles zufällig wiedergeben`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">Alles zufällig wiedergeben</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-de/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-de/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Amestecă toate`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">Amestecă toate</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ro/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-ro/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Barreja-ho tot`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">Barreja-ho tot</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ca/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-ca/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Bland alle`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">Bland alle</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-da/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-da/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Blanda alla`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">Blanda alla</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-sv/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-sv/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Cymysgu\'r cwbl`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">Cymysgu\'r cwbl</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-cy/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-cy/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Hamısını qarışdır`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">Hamısını qarışdır</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-az/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-az/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Jaukt visu`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">Jaukt visu</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-lv/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-lv/strings.xml"
+ line="87"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Juhuesita kõik`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">Juhuesita kõik</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-et/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-et/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Lecture aléatoire de tous les titres`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">Lecture aléatoire de tous les titres</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-fr/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-fr/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Maišyti viską`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">Maišyti viską</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-lt/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-lt/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Mezclar todas`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">Mezclar todas</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-es/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-es/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Miješaj sve`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">Miješaj sve</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-hr/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-hr/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Na h-uile air thuaiream`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">Na h-uile air thuaiream</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-gd/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-gd/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Nahastu guztiak`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">Nahastu guztiak</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-eu/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-eu/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Phát ngẫu nhiên tất cả`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">Phát ngẫu nhiên tất cả</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-vi/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-vi/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Prehrať všetky náhodne`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">Prehrať všetky náhodne</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-sk/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-sk/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Premešaj vse`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">Premešaj vse</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-sl/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-sl/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Reproducción aleatoria`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">Reproducción aleatoria</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-es-rUS/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-es-rUS/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Reproduzir todas aleatoriamente`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">Reproduzir todas aleatoriamente</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-pt-rPT/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-pt-rPT/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Sekoita kaikki`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">Sekoita kaikki</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-fi/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-fi/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Shuffle all`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">Shuffle all</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rAU/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-en-rAU/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Shuffle all`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">Shuffle all</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rCA/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-en-rCA/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Shuffle all`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">Shuffle all</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rGB/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-en-rGB/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Shuffle all`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">Shuffle all</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rIN/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-en-rIN/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Shuffle alle`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">Shuffle alle</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-nb/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-nb/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Todas aleatório`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">Todas aleatório</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-pt-rBR/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-pt-rBR/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Todo ao chou`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">Todo ao chou</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-gl/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-gl/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Too al debalu`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">Too al debalu</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ast-rES/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-ast-rES/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Tümünü karıştır`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">Tümünü karıştır</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-tr/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-tr/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Vše náhodně`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">Vše náhodně</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-cs/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-cs/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Τυχαία αναπαραγωγή όλων`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">Τυχαία αναπαραγωγή όλων</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-el/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-el/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Насумично све`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">Насумично све</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-sr/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-sr/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Перамяшаць усё`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">Перамяшаць усё</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-be/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-be/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Перемешать все`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">Перемешать все</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ru/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-ru/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Перемішати все`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">Перемішати все</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-uk/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-uk/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Разбъркване на всички`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">Разбъркване на всички</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-bg/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-bg/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `ערבב הכל`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">ערבב הכל</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-iw/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-iw/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `تصادفی همه`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">تصادفی همه</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-fa/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-fa/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `خلْط الكل`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">خلْط الكل</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ar/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-ar/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `ههڕهمهکی`, used in `accessibility_shuffle_all`, `accessibility_shuffle` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">ههڕهمهکی</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ku/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-ku/strings.xml"
+ line="82"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ <location
+ file="res/values-ku/strings.xml"
+ line="83"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `ھەممىنى تەرتىپسىز چال`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">ھەممىنى تەرتىپسىز چال</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ug/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-ug/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `सबको शफ़ल करें`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">सबको शफ़ल करें</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-hi/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-hi/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `सर्व शफल करा`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">सर्व शफल करा</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-mr/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-mr/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `আটাইবোৰ সানমিহলি কৰক`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">আটাইবোৰ সানমিহলি কৰক</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-as/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-as/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `બધાને પીસો`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">બધાને પીસો</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-gu/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-gu/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `ସମସ୍ତ ସଫଲ୍ କରନ୍ତୁ`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">ସମସ୍ତ ସଫଲ୍ କରନ୍ତୁ</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-or/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-or/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `அனைத்தையும் குலை`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">அனைத்தையும் குலை</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ta/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-ta/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `అన్నీ షఫుల్ చేయి`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">అన్నీ షఫుల్ చేయి</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-te/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-te/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `എല്ലാം ഷഫിൾ ചെയ്യുക`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">എല്ലാം ഷഫിൾ ചെയ്യുക</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ml/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-ml/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `สลับทั้งหมด`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">สลับทั้งหมด</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-th/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-th/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `すべてシャッフル`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">すべてシャッフル</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ja/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-ja/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `모두 셔플`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">모두 셔플</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ko/strings.xml"
+ line="30"
+ column="5"/>
+ <location
+ file="res/values-ko/strings.xml"
+ line="89"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Shuffle`, used in `accessibility_shuffle` and `menu_shuffle_item`"
+ errorLine1=" <string name="menu_shuffle_item">Shuffle</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values/strings.xml"
+ line="36"
+ column="5"/>
+ <location
+ file="res/values/strings.xml"
+ line="108"
+ column="5"
+ message="Duplicates value in `menu_shuffle_item`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Shuffle all`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
+ errorLine1=" <string name="menu_shuffle_all">Shuffle all</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values/strings.xml"
+ line="37"
+ column="5"/>
+ <location
+ file="res/values/strings.xml"
+ line="109"
+ column="5"
+ message="Duplicates value in `menu_shuffle_all`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `儲存`, used in `save` and `settings_storage_category`"
+ errorLine1=" <string name="save">儲存</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-zh-rTW/strings.xml"
+ line="58"
+ column="5"/>
+ <location
+ file="res/values-zh-rTW/strings.xml"
+ line="94"
+ column="5"
+ message="Duplicates value in `save`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Annulla`, used in `cancel` and `clear`"
+ errorLine1=" <string name="cancel">Annulla</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-it/strings.xml"
+ line="59"
+ column="5"/>
+ <location
+ file="res/values-it/strings.xml"
+ line="61"
+ column="5"
+ message="Duplicates value in `cancel`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Borrar`, used in `clear` and `context_menu_delete`"
+ errorLine1=" <string name="clear">Borrar</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-es-rUS/strings.xml"
+ line="61"
+ column="5"/>
+ <location
+ file="res/values-es-rUS/strings.xml"
+ line="77"
+ column="5"
+ message="Duplicates value in `clear`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Hapus`, used in `clear` and `context_menu_delete`"
+ errorLine1=" <string name="clear">Hapus</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-in/strings.xml"
+ line="61"
+ column="5"/>
+ <location
+ file="res/values-in/strings.xml"
+ line="77"
+ column="5"
+ message="Duplicates value in `clear`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Löschen`, used in `clear` and `context_menu_delete`"
+ errorLine1=" <string name="clear">Löschen</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-de/strings.xml"
+ line="61"
+ column="5"/>
+ <location
+ file="res/values-de/strings.xml"
+ line="77"
+ column="5"
+ message="Duplicates value in `clear`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Xoá`, used in `clear` and `context_menu_delete`"
+ errorLine1=" <string name="clear">Xoá</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-vi/strings.xml"
+ line="61"
+ column="5"/>
+ <location
+ file="res/values-vi/strings.xml"
+ line="77"
+ column="5"
+ message="Duplicates value in `clear`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `播放`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">播放</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-zh-rHK/strings.xml"
+ line="65"
+ column="5"/>
+ <location
+ file="res/values-zh-rHK/strings.xml"
+ line="76"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `لێدان`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">لێدان</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ku/strings.xml"
+ line="68"
+ column="5"/>
+ <location
+ file="res/values-ku/strings.xml"
+ line="78"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Atskaņot`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">Atskaņot</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-lv/strings.xml"
+ line="71"
+ column="5"/>
+ <location
+ file="res/values-lv/strings.xml"
+ line="82"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `ಪ್ಲೇ`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">ಪ್ಲೇ</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-kn/strings.xml"
+ line="71"
+ column="5"/>
+ <location
+ file="res/values-kn/strings.xml"
+ line="83"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Afspelen`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">Afspelen</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-nl/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-nl/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Afspil`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">Afspil</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-da/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-da/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Chwarae`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">Chwarae</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-cy/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-cy/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Cluich`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">Cluich</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-gd/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-gd/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Erreproduzitu`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">Erreproduzitu</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-eu/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-eu/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Esita`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">Esita</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-et/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-et/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Lejátszás`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">Lejátszás</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-hu/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-hu/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Lire`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">Lire</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-fr/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-fr/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Odtwórz`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">Odtwórz</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-pl/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-pl/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Ofspillen`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">Ofspillen</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-lb/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-lb/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Ofspylje`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">Ofspylje</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-fy-rNL/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-fy-rNL/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Oynat`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">Oynat</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-az/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-az/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Paleisti`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">Paleisti</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-lt/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-lt/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Phát`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">Phát</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-vi/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-vi/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Play`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">Play</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rAU/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-en-rAU/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Play`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">Play</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rCA/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-en-rCA/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Play`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">Play</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rGB/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-en-rGB/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Play`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">Play</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rIN/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-en-rIN/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Predvajaj`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">Predvajaj</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-sl/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-sl/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Prehrať`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">Prehrať</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-sk/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-sk/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Putar`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">Putar</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-in/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-in/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Přehrát`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">Přehrát</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-cs/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-cs/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Redare`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">Redare</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ro/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-ro/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Reproducir`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">Reproducir</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ast-rES/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-ast-rES/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Reproducir`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">Reproducir</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-es-rUS/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-es-rUS/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Reproducir`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">Reproducir</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-es/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-es/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Reproducir`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">Reproducir</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-gl/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-gl/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Reprodueix`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">Reprodueix</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ca/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-ca/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Reproduzir`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">Reproduzir</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-pt-rPT/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-pt-rPT/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Riproduci`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">Riproduci</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-it/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-it/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Speel`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">Speel</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-af/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-af/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Spela`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">Spela</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-sv/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-sv/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Spill av`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">Spill av</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-nb/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-nb/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Sviraj`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">Sviraj</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-hr/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-hr/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Tocar`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">Tocar</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-pt-rBR/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-pt-rBR/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Toista`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">Toista</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-fi/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-fi/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Wiedergeben`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">Wiedergeben</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-de/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-de/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Çal`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">Çal</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-tr/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-tr/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Αναπαραγωγή`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">Αναπαραγωγή</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-el/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-el/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Воспроизвести`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">Воспроизвести</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ru/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-ru/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Грати`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">Грати</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-uk/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-uk/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Изпълни`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">Изпълни</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-bg/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-bg/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Прайграць`, used in `accessibility_play`, `context_menu_play_album` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">Прайграць</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-be/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-be/strings.xml"
+ line="74"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ <location
+ file="res/values-be/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Пусти`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">Пусти</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-sr/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-sr/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `נגן`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">נגן</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-iw/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-iw/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `تشغيل`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">تشغيل</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ar/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-ar/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `قويۇش`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">قويۇش</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ug/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-ug/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `پخش`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">پخش</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-fa/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-fa/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `प्ले करा`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">प्ले करा</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-mr/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-mr/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `बजाएँ`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">बजाएँ</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-hi/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-hi/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `চলাওঁক`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">চলাওঁক</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-as/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-as/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `ચલાવો`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">ચલાવો</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-gu/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-gu/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `ଚଳାଅ`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">ଚଳାଅ</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-or/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-or/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `இயக்கு`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">இயக்கு</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ta/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-ta/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `ప్లే చేయి`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">ప్లే చేయి</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-te/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-te/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `പ്ലേ ചെയ്യുക`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">പ്ലേ ചെയ്യുക</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ml/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-ml/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `เล่น`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">เล่น</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-th/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-th/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `再生`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">再生</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ja/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-ja/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `播放`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">播放</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-zh-rCN/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-zh-rCN/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `播放`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">播放</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-zh-rTW/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-zh-rTW/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `재생`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">재생</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ko/strings.xml"
+ line="72"
+ column="5"/>
+ <location
+ file="res/values-ko/strings.xml"
+ line="84"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Siguiente`, used in `accessibility_next` and `context_menu_play_next`"
+ errorLine1=" <string name="context_menu_play_next">Siguiente</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ast-rES/strings.xml"
+ line="73"
+ column="5"/>
+ <location
+ file="res/values-ast-rES/strings.xml"
+ line="86"
+ column="5"
+ message="Duplicates value in `context_menu_play_next`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Siguiente`, used in `accessibility_next` and `context_menu_play_next`"
+ errorLine1=" <string name="context_menu_play_next">Siguiente</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-es-rUS/strings.xml"
+ line="73"
+ column="5"/>
+ <location
+ file="res/values-es-rUS/strings.xml"
+ line="86"
+ column="5"
+ message="Duplicates value in `context_menu_play_next`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Siguiente`, used in `accessibility_next` and `context_menu_play_next`"
+ errorLine1=" <string name="context_menu_play_next">Siguiente</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-es/strings.xml"
+ line="73"
+ column="5"/>
+ <location
+ file="res/values-es/strings.xml"
+ line="86"
+ column="5"
+ message="Duplicates value in `context_menu_play_next`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Play`, used in `accessibility_play` and `context_menu_play_selection`"
+ errorLine1=" <string name="context_menu_play_selection">Play</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values/strings.xml"
+ line="90"
+ column="5"/>
+ <location
+ file="res/values/strings.xml"
+ line="104"
+ column="5"
+ message="Duplicates value in `context_menu_play_selection`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `音乐:4 \u00d7 1`, used in `app_widget_large` and `app_widget_small`"
+ errorLine1=" <string name="app_widget_small">音乐:4 \u00d7 1</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-zh-rCN/strings.xml"
+ line="104"
+ column="5"/>
+ <location
+ file="res/values-zh-rCN/strings.xml"
+ line="105"
+ column="5"
+ message="Duplicates value in `app_widget_small`"/>
+ </issue>
+
+ <issue
+ id="DuplicateStrings"
+ message="Duplicate string value `Ez dago abestirik erreprodukzio-zerrendan`, used in `empty_playlist_main` and `empty_queue_main`"
+ errorLine1=" <string name="empty_playlist_main">Ez dago abestirik erreprodukzio-zerrendan</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-eu/strings.xml"
+ line="109"
+ column="5"/>
+ <location
+ file="res/values-eu/strings.xml"
+ line="117"
+ column="5"
+ message="Duplicates value in `empty_playlist_main`"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 sekundoj</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-eo/strings.xml"
+ line="31"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 minutoj</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-eo/strings.xml"
+ line="32"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 segundos</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-sc-rIT/strings.xml"
+ line="32"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 minutoj</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-eo/strings.xml"
+ line="33"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 minutos</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-sc-rIT/strings.xml"
+ line="33"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 minutoj</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-eo/strings.xml"
+ line="34"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 minutos</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-sc-rIT/strings.xml"
+ line="34"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 minutoj</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-eo/strings.xml"
+ line="35"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 minutos</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-sc-rIT/strings.xml"
+ line="35"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 minutoj</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-eo/strings.xml"
+ line="36"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 minutos</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-sc-rIT/strings.xml"
+ line="36"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 minutoj</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-eo/strings.xml"
+ line="37"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 minutos</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-sc-rIT/strings.xml"
+ line="37"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 minutoj</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-eo/strings.xml"
+ line="38"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 minutos</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-sc-rIT/strings.xml"
+ line="38"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 minutos</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-sc-rIT/strings.xml"
+ line="39"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 kantoj</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-eo/strings.xml"
+ line="40"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 kantoj</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-eo/strings.xml"
+ line="41"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 sekonda</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-sq/strings.xml"
+ line="68"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 minuta</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-sq/strings.xml"
+ line="69"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 minuta</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-sq/strings.xml"
+ line="70"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 minuta</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-sq/strings.xml"
+ line="71"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 minuta</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-sq/strings.xml"
+ line="72"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 minuta</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-sq/strings.xml"
+ line="73"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 minuta</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-sq/strings.xml"
+ line="74"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 minuta</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-sq/strings.xml"
+ line="75"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 këngë</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-sq/strings.xml"
+ line="78"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 këngë</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-sq/strings.xml"
+ line="79"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 秒</string>"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="res/values-zh-rHK/strings.xml"
+ line="113"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 分鐘</string>"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/values-zh-rHK/strings.xml"
+ line="114"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 分鐘</string>"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/values-zh-rHK/strings.xml"
+ line="115"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 分鐘</string>"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/values-zh-rHK/strings.xml"
+ line="116"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 分鐘</string>"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/values-zh-rHK/strings.xml"
+ line="117"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 sekundes</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-lv/strings.xml"
+ line="118"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 分鐘</string>"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="res/values-zh-rHK/strings.xml"
+ line="118"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 minūtes</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-lv/strings.xml"
+ line="119"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 分鐘</string>"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="res/values-zh-rHK/strings.xml"
+ line="119"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 minūtes</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-lv/strings.xml"
+ line="120"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 分鐘</string>"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="res/values-zh-rHK/strings.xml"
+ line="120"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 ಸೆಕೆಂಡ್ಗಳು</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-kn/strings.xml"
+ line="121"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 minūtes</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-lv/strings.xml"
+ line="121"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 sekondes</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-af/strings.xml"
+ line="122"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 ছেকেণ্ড</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-as/strings.xml"
+ line="122"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 segundos</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ast-rES/strings.xml"
+ line="122"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 секундаў</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-be/strings.xml"
+ line="122"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 sekunder</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-da/strings.xml"
+ line="122"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 segundos</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-es-rUS/strings.xml"
+ line="122"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 segundos</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-es/strings.xml"
+ line="122"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 segundo</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-eu/strings.xml"
+ line="122"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 સેકન્ડો</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-gu/strings.xml"
+ line="122"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 sekundi</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-hr/strings.xml"
+ line="122"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 detik</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-in/strings.xml"
+ line="122"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 ನಿಮಿಷಗಳು</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-kn/strings.xml"
+ line="122"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30-60 Sekonnen</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-lb/strings.xml"
+ line="122"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 sek.</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-lt/strings.xml"
+ line="122"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 minūtes</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-lv/strings.xml"
+ line="122"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 സെക്കൻഡ്</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ml/strings.xml"
+ line="122"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 सेकंद</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-mr/strings.xml"
+ line="122"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 sekunder</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-nb/strings.xml"
+ line="122"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 seconden</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-nl/strings.xml"
+ line="122"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 ସେକେଣ୍ଡ</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-or/strings.xml"
+ line="122"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 sekund</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-pl/strings.xml"
+ line="122"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 секунди</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-sr/strings.xml"
+ line="122"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 sekunder</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-sv/strings.xml"
+ line="122"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30-60 வினாடிகள்</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ta/strings.xml"
+ line="122"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 సెకనులు</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-te/strings.xml"
+ line="122"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30-60 سىكونتقىچە</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ug/strings.xml"
+ line="122"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 секунд</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-uk/strings.xml"
+ line="122"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 giây</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-vi/strings.xml"
+ line="122"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 minute</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-af/strings.xml"
+ line="123"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 ثانية</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-ar/strings.xml"
+ line="123"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 মিনিট</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-as/strings.xml"
+ line="123"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 minutos</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-ast-rES/strings.xml"
+ line="123"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 saniyə</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-az/strings.xml"
+ line="123"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 хвіліны</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-be/strings.xml"
+ line="123"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 секунди</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-bg/strings.xml"
+ line="123"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 segons</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ca/strings.xml"
+ line="123"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 sekund</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-cs/strings.xml"
+ line="123"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 minutter</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-da/strings.xml"
+ line="123"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 δευτερόλεπτα</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-el/strings.xml"
+ line="123"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 seconds</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rAU/strings.xml"
+ line="123"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 seconds</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rCA/strings.xml"
+ line="123"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 seconds</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rGB/strings.xml"
+ line="123"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 seconds</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rIN/strings.xml"
+ line="123"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 minutos</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-es-rUS/strings.xml"
+ line="123"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 minutos</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-es/strings.xml"
+ line="123"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 sekundit</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-et/strings.xml"
+ line="123"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 minutu</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-eu/strings.xml"
+ line="123"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 sekuntia</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-fi/strings.xml"
+ line="123"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 sekonden</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-fy-rNL/strings.xml"
+ line="123"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 segundos</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-gl/strings.xml"
+ line="123"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 મિનિટ</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-gu/strings.xml"
+ line="123"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 मिनट</string>"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="res/values-hi/strings.xml"
+ line="123"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 minute</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-hr/strings.xml"
+ line="123"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 másodperc</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-hu/strings.xml"
+ line="123"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 menit</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-in/strings.xml"
+ line="123"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 secondi</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-it/strings.xml"
+ line="123"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 ನಿಮಿಷಗಳು</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-kn/strings.xml"
+ line="123"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30-60초</string>"
+ errorLine2=" ~~~~~~">
+ <location
+ file="res/values-ko/strings.xml"
+ line="123"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1-2 Minutten</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-lb/strings.xml"
+ line="123"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 min.</string>"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="res/values-lt/strings.xml"
+ line="123"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 minūtes</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-lv/strings.xml"
+ line="123"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 മിനിറ്റ്</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ml/strings.xml"
+ line="123"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 मिनिटे</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-mr/strings.xml"
+ line="123"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 minutter</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-nb/strings.xml"
+ line="123"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 minuten</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-nl/strings.xml"
+ line="123"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 ମିନିଟ୍</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-or/strings.xml"
+ line="123"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 minuty</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-pl/strings.xml"
+ line="123"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 segundos</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-pt-rPT/strings.xml"
+ line="123"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 de secunde</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ro/strings.xml"
+ line="123"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 sekúnd</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-sk/strings.xml"
+ line="123"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 sekund</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-sl/strings.xml"
+ line="123"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 минута</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-sr/strings.xml"
+ line="123"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 minuter</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-sv/strings.xml"
+ line="123"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 நிமிடங்கள்</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ta/strings.xml"
+ line="123"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 నిమిషాలు</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-te/strings.xml"
+ line="123"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 วินาที</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-th/strings.xml"
+ line="123"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 saniye</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-tr/strings.xml"
+ line="123"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1-2 مىنۇتقىچە</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-ug/strings.xml"
+ line="123"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 хвилини</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-uk/strings.xml"
+ line="123"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 phút</string>"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="res/values-vi/strings.xml"
+ line="123"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30-60 秒</string>"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="res/values-zh-rCN/strings.xml"
+ line="123"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 首歌曲</string>"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="res/values-zh-rHK/strings.xml"
+ line="123"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 秒</string>"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="res/values-zh-rTW/strings.xml"
+ line="123"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 minute</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-af/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 دقيقة</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-ar/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 মিনিট</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-as/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 minutos</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-ast-rES/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 dəqiqə</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-az/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 хвіліны</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-be/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 минути</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-bg/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 minuts</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-ca/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 minuty</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-cs/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 munud</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-cy/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 minutter</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-da/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 λεπτά</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-el/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 minutes</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rAU/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 minutes</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rCA/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 minutes</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rGB/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 minutes</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rIN/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 minutos</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-es-rUS/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 minutos</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-es/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 minutit</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-et/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 minutu</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-eu/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 minuuttia</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-fi/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 minuten</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-fy-rNL/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 minutos</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-gl/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 મિનિટ</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-gu/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 मिनट</string>"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="res/values-hi/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 minute</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-hr/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 perc</string>"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="res/values-hu/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 menit</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-in/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 minuti</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-it/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 ನಿಮಿಷಗಳು</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-kn/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1-2분</string>"
+ errorLine2=" ~~~~">
+ <location
+ file="res/values-ko/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2-3 Minutten</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-lb/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 min.</string>"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="res/values-lt/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 minūtes</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-lv/strings.xml"
+ line="124"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 മിനിറ്റ്</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ml/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 मिनिटे</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-mr/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 minutter</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-nb/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 minuten</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-nl/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 ମିନିଟ୍</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-or/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 minut</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-pl/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 minutos</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-pt-rPT/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 minute</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-ro/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 minúty</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-sk/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 minut</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-sl/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 минута</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-sr/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 minuter</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-sv/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 நிமிடங்கள்</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ta/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 నిమిషాలు</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-te/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 นาที</string>"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="res/values-th/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 dakika</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-tr/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2-3 مىنۇتقىچە</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-ug/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 хвилини</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-uk/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 phút</string>"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="res/values-vi/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1-2 分钟</string>"
+ errorLine2=" ~~~~~~">
+ <location
+ file="res/values-zh-rCN/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 首歌曲</string>"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="res/values-zh-rHK/strings.xml"
+ line="124"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 分鐘</string>"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/values-zh-rTW/strings.xml"
+ line="124"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 minute</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-af/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 دقائق</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-ar/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 মিনিট</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-as/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 minutos</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-ast-rES/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 dəqiqə</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-az/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 хвіліны</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-be/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 минути</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-bg/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 minuts</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-ca/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 minuty</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-cs/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 munud</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-cy/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 minutter</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-da/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 λεπτά</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-el/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 minutes</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rAU/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 minutes</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rCA/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 minutes</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rGB/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 minutes</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rIN/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 minutos</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-es-rUS/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 minutos</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-es/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 minutit</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-et/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 minutu</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-eu/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 minuuttia</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-fi/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 minuten</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-fy-rNL/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 minutos</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-gl/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 મિનિટ</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-gu/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 मिनट</string>"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="res/values-hi/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 minute</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-hr/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 perc</string>"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="res/values-hu/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 menit</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-in/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 minuti</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-it/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 ನಿಮಿಷಗಳು</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-kn/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2-3분</string>"
+ errorLine2=" ~~~~">
+ <location
+ file="res/values-ko/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3-4 Minutten</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-lb/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 min.</string>"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="res/values-lt/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 minūtes</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-lv/strings.xml"
+ line="125"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 മിനിറ്റ്</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ml/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 मिनिटे</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-mr/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 minutter</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-nb/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 minuten</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-nl/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 ମିନିଟ୍</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-or/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 minuty</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-pl/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 minutos</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-pt-rPT/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 minute</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-ro/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 minúty</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-sk/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 minute</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-sl/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 минута</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-sr/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 minuter</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-sv/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 நிமிடங்கள்</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ta/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 నిమిషాలు</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-te/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 นาที</string>"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="res/values-th/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 dakika</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-tr/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3-4 مىنۇتقىچە</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-ug/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 хвилини</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-uk/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 phút</string>"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="res/values-vi/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2-3 分钟</string>"
+ errorLine2=" ~~~~~~">
+ <location
+ file="res/values-zh-rCN/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 分鐘</string>"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/values-zh-rTW/strings.xml"
+ line="125"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 minute</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-af/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 دقائق</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-ar/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 মিনিট</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-as/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 minutos</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-ast-rES/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 dəqiqə</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-az/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 хвілін</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-be/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 минути</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-bg/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 minuts</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-ca/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 minuty</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-cs/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 minutter</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-da/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 λεπτά</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-el/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 minutes</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rAU/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 minutes</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rCA/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 minutes</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rGB/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 minutes</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rIN/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 minutos</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-es-rUS/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 minutos</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-es/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 minutit</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-et/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 minutu</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-eu/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 minuuttia</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-fi/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 minuten</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-fy-rNL/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 minutos</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-gl/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 મિનિટ</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-gu/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 मिनट</string>"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="res/values-hi/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 minuta</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-hr/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 perc</string>"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="res/values-hu/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 menit</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-in/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 minuti</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-it/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 ನಿಮಿಷಗಳು</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-kn/strings.xml"
+ line="126"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3-4분</string>"
+ errorLine2=" ~~~~">
+ <location
+ file="res/values-ko/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4-5 Minutten</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-lb/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 min.</string>"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="res/values-lt/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 മിനിറ്റ്</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ml/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 मिनिटे</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-mr/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 minutter</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-nb/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 minuten</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-nl/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 ମିନିଟ୍</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-or/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 minut</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-pl/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 minutos</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-pt-rPT/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 minute</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-ro/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 minúty</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-sk/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 minute</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-sl/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 минута</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-sr/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 minuter</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-sv/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 நிமிடங்கள்</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ta/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 నిమిషాలు</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-te/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 นาที</string>"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="res/values-th/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 dakika</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-tr/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4-5 مىنۇتقىچە</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-ug/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 хвилин</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-uk/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 phút</string>"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="res/values-vi/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3-4 分钟</string>"
+ errorLine2=" ~~~~~~">
+ <location
+ file="res/values-zh-rCN/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 分鐘</string>"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/values-zh-rTW/strings.xml"
+ line="126"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 minute</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-af/strings.xml"
+ line="127"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 دقائق</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-ar/strings.xml"
+ line="127"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 মিনিট</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-as/strings.xml"
+ line="127"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 minutos</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ast-rES/strings.xml"
+ line="127"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 dəqiqə</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-az/strings.xml"
+ line="127"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 хвілін</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-be/strings.xml"
+ line="127"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 минути</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-bg/strings.xml"
+ line="127"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 minuts</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-ca/strings.xml"
+ line="127"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 minut</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-cs/strings.xml"
+ line="127"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 minutter</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-da/strings.xml"
+ line="127"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 λεπτά</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-el/strings.xml"
+ line="127"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 minutes</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rAU/strings.xml"
+ line="127"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 minutes</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rCA/strings.xml"
+ line="127"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 minutes</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rGB/strings.xml"
+ line="127"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 minutes</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rIN/strings.xml"
+ line="127"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 minutos</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-es-rUS/strings.xml"
+ line="127"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 minutos</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-es/strings.xml"
+ line="127"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 minutit</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-et/strings.xml"
+ line="127"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 minutu</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-eu/strings.xml"
+ line="127"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 minuuttia</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-fi/strings.xml"
+ line="127"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 minuten</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-fy-rNL/strings.xml"
+ line="127"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 minutos</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-gl/strings.xml"
+ line="127"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 મિનિટ</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-gu/strings.xml"
+ line="127"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 मिनट</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-hi/strings.xml"
+ line="127"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 minuta</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-hr/strings.xml"
+ line="127"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 perc</string>"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="res/values-hu/strings.xml"
+ line="127"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 menit</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-in/strings.xml"
+ line="127"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 minuti</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-it/strings.xml"
+ line="127"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 ನಿಮಿಷಗಳು</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-kn/strings.xml"
+ line="127"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4-5분</string>"
+ errorLine2=" ~~~~">
+ <location
+ file="res/values-ko/strings.xml"
+ line="127"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5-10 Minutten</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-lb/strings.xml"
+ line="127"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 min.</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-lt/strings.xml"
+ line="127"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 മിനിറ്റ്</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ml/strings.xml"
+ line="127"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 मिनिटे</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-mr/strings.xml"
+ line="127"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 minutter</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-nb/strings.xml"
+ line="127"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 minuten</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-nl/strings.xml"
+ line="127"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 ମିନିଟ୍</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-or/strings.xml"
+ line="127"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 minut</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-pl/strings.xml"
+ line="127"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 minutos</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-pt-rPT/strings.xml"
+ line="127"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 minute</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-ro/strings.xml"
+ line="127"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 minút</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-sk/strings.xml"
+ line="127"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 minut</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-sl/strings.xml"
+ line="127"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 минута</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-sr/strings.xml"
+ line="127"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 minuter</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-sv/strings.xml"
+ line="127"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 நிமிடங்கள்</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ta/strings.xml"
+ line="127"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 నిమిషాలు</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-te/strings.xml"
+ line="127"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 นาที</string>"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="res/values-th/strings.xml"
+ line="127"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 dakika</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-tr/strings.xml"
+ line="127"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5-10 مىنۇتقىچە</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ug/strings.xml"
+ line="127"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 хвилин</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-uk/strings.xml"
+ line="127"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 phút</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-vi/strings.xml"
+ line="127"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4-5 分钟</string>"
+ errorLine2=" ~~~~~~">
+ <location
+ file="res/values-zh-rCN/strings.xml"
+ line="127"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 分鐘</string>"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/values-zh-rTW/strings.xml"
+ line="127"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 minute</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-af/strings.xml"
+ line="128"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 دقائق</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-ar/strings.xml"
+ line="128"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 মিনিট</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-as/strings.xml"
+ line="128"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 minutos</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ast-rES/strings.xml"
+ line="128"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 dəqiqə</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-az/strings.xml"
+ line="128"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 хвілін</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-be/strings.xml"
+ line="128"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 минути</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-bg/strings.xml"
+ line="128"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 minuts</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-ca/strings.xml"
+ line="128"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 minut</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-cs/strings.xml"
+ line="128"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 minutter</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-da/strings.xml"
+ line="128"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 λεπτά</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-el/strings.xml"
+ line="128"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 minutes</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rAU/strings.xml"
+ line="128"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 minutes</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rCA/strings.xml"
+ line="128"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 minutes</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rGB/strings.xml"
+ line="128"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 minutes</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rIN/strings.xml"
+ line="128"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 minutos</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-es-rUS/strings.xml"
+ line="128"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 minutos</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-es/strings.xml"
+ line="128"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 minutit</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-et/strings.xml"
+ line="128"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 minutu</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-eu/strings.xml"
+ line="128"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 minuuttia</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-fi/strings.xml"
+ line="128"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 minuten</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-fy-rNL/strings.xml"
+ line="128"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 minutos</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-gl/strings.xml"
+ line="128"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 મિનિટ</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-gu/strings.xml"
+ line="128"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 मिनट</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-hi/strings.xml"
+ line="128"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 minuta</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-hr/strings.xml"
+ line="128"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 perc</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-hu/strings.xml"
+ line="128"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 menit</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-in/strings.xml"
+ line="128"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 minuti</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-it/strings.xml"
+ line="128"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 ನಿಮಿಷಗಳು</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-kn/strings.xml"
+ line="128"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5-10분</string>"
+ errorLine2=" ~~~~~">
+ <location
+ file="res/values-ko/strings.xml"
+ line="128"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10-30 Minutten</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-lb/strings.xml"
+ line="128"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 min.</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-lt/strings.xml"
+ line="128"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 dziesmas</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-lv/strings.xml"
+ line="128"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 മിനിറ്റ്</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ml/strings.xml"
+ line="128"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 मिनिटे</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-mr/strings.xml"
+ line="128"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 minutter</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-nb/strings.xml"
+ line="128"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 minuten</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-nl/strings.xml"
+ line="128"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 ମିନିଟ୍</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-or/strings.xml"
+ line="128"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 minut</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-pl/strings.xml"
+ line="128"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 minutos</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-pt-rPT/strings.xml"
+ line="128"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 minute</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-ro/strings.xml"
+ line="128"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 minút</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-sk/strings.xml"
+ line="128"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 minut</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-sl/strings.xml"
+ line="128"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 минута</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-sr/strings.xml"
+ line="128"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 minuter</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-sv/strings.xml"
+ line="128"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 நிமிடங்கள்</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ta/strings.xml"
+ line="128"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 నిమిషాలు</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-te/strings.xml"
+ line="128"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 นาที</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-th/strings.xml"
+ line="128"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 dakika</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-tr/strings.xml"
+ line="128"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10-30 مىنۇتقىچە</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ug/strings.xml"
+ line="128"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 хвилин</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-uk/strings.xml"
+ line="128"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 phút</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-vi/strings.xml"
+ line="128"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5-10 分钟</string>"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="res/values-zh-rCN/strings.xml"
+ line="128"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 分鐘</string>"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="res/values-zh-rTW/strings.xml"
+ line="128"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 minute</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-af/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 دقيقة</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-ar/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 মিনিট</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-as/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 minutos</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ast-rES/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 dəqiqə</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-az/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 хвілін</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-be/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 минути</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-bg/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 minuts</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ca/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 minut</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-cs/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 munud</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-cy/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 minutter</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-da/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 λεπτά</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-el/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 minutes</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rAU/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 minutes</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rCA/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 minutes</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rGB/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 minutes</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rIN/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 minutos</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-es-rUS/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 minutos</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-es/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 minutit</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-et/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 minutu</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-eu/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 minuuttia</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-fi/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 minuten</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-fy-rNL/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 minutos</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-gl/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 મિનિટ</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-gu/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 मिनट</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-hi/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 minuta</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-hr/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 perc</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-hu/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 menit</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-in/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 minuti</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-it/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10-30분</string>"
+ errorLine2=" ~~~~~~">
+ <location
+ file="res/values-ko/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30-60 Minutten</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-lb/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 min.</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-lt/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 dziesmas</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-lv/strings.xml"
+ line="129"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 മിനിറ്റ്</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ml/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 मिनिटे</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-mr/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 minutter</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-nb/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 minuten</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-nl/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 ମିନିଟ୍</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-or/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 minut</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-pl/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 minutos</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-pt-rPT/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 de minute</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ro/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 minút</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-sk/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 minut</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-sl/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 минута</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-sr/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 minuter</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-sv/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 நிமிடங்கள்</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ta/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 నిమిషాలు</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-te/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 นาที</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-th/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 dakika</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-tr/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30-60 مىنۇتقىچە</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ug/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 хвилин</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-uk/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 phút</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-vi/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10-30 分钟</string>"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/values-zh-rCN/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 分鐘</string>"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="res/values-zh-rTW/strings.xml"
+ line="129"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 دقيقة</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-ar/strings.xml"
+ line="130"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 dəqiqə</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-az/strings.xml"
+ line="130"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 минути</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-bg/strings.xml"
+ line="130"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 minuts</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ca/strings.xml"
+ line="130"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 minut</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-cs/strings.xml"
+ line="130"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 λεπτά</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-el/strings.xml"
+ line="130"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 minutes</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rAU/strings.xml"
+ line="130"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 minutes</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rCA/strings.xml"
+ line="130"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 minutes</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rGB/strings.xml"
+ line="130"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 minutes</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rIN/strings.xml"
+ line="130"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 minutit</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-et/strings.xml"
+ line="130"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 minuuttia</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-fi/strings.xml"
+ line="130"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 minuten</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-fy-rNL/strings.xml"
+ line="130"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 minutos</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-gl/strings.xml"
+ line="130"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 perc</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-hu/strings.xml"
+ line="130"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 minuti</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-it/strings.xml"
+ line="130"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30-60분</string>"
+ errorLine2=" ~~~~~~">
+ <location
+ file="res/values-ko/strings.xml"
+ line="130"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 minutos</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-pt-rPT/strings.xml"
+ line="130"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 de minute</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ro/strings.xml"
+ line="130"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 minút</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-sk/strings.xml"
+ line="130"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 minut</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-sl/strings.xml"
+ line="130"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 นาที</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-th/strings.xml"
+ line="130"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 dakika</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-tr/strings.xml"
+ line="130"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30-60 分钟</string>"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/values-zh-rCN/strings.xml"
+ line="130"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 分鐘</string>"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="res/values-zh-rTW/strings.xml"
+ line="130"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 ಹಾಡುಗಳು</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-kn/strings.xml"
+ line="131"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 liedjies</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-af/strings.xml"
+ line="132"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 টা গীত</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-as/strings.xml"
+ line="132"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 canciones</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ast-rES/strings.xml"
+ line="132"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 трэка</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-be/strings.xml"
+ line="132"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 sange</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-da/strings.xml"
+ line="132"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 canciones</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-es-rUS/strings.xml"
+ line="132"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 canciones</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-es/strings.xml"
+ line="132"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 abesti</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-eu/strings.xml"
+ line="132"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 ગીતો</string>"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="res/values-gu/strings.xml"
+ line="132"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 गाने</string>"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="res/values-hi/strings.xml"
+ line="132"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 pjesme</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-hr/strings.xml"
+ line="132"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 lagu</string>"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="res/values-in/strings.xml"
+ line="132"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 ಹಾಡುಗಳು</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-kn/strings.xml"
+ line="132"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2-4 Lidder</string>"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="res/values-lb/strings.xml"
+ line="132"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 dainos</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-lt/strings.xml"
+ line="132"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 ഗാനങ്ങൾ</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-ml/strings.xml"
+ line="132"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 गाणी</string>"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="res/values-mr/strings.xml"
+ line="132"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 sanger</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-nb/strings.xml"
+ line="132"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 nummers</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-nl/strings.xml"
+ line="132"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 ଗୀତ</string>"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="res/values-or/strings.xml"
+ line="132"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 piosenek</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-pl/strings.xml"
+ line="132"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 песме</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-sr/strings.xml"
+ line="132"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 låtar</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-sv/strings.xml"
+ line="132"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 பாடல்கள்</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ta/strings.xml"
+ line="132"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 పాటలు</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-te/strings.xml"
+ line="132"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2-4 نەغمە ناخشا</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ug/strings.xml"
+ line="132"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 пісні</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-uk/strings.xml"
+ line="132"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 bài hát</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-vi/strings.xml"
+ line="132"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 liedjies</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-af/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2-4 أغاني</string>"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="res/values-ar/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 টা গীত</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-as/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 canciones</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ast-rES/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 mahnı</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-az/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 трэкаў</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-be/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 песни</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-bg/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 cançons</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-ca/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 skladby</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-cs/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 cân</string>"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="res/values-cy/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 sange</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-da/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 τραγούδια</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-el/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 songs</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-en-rAU/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 songs</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-en-rCA/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 songs</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-en-rGB/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 songs</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-en-rIN/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 canciones</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-es-rUS/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 canciones</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-es/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 laulu</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-et/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 abesti</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-eu/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 kappaletta</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-fi/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 nûmers</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-fy-rNL/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 cancións</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-gl/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 ગીતો</string>"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="res/values-gu/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5- 9 गाने</string>"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="res/values-hi/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 pjesama</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-hr/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 dal</string>"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="res/values-hu/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 lagu</string>"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="res/values-in/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 canzoni</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-it/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2-4곡의 음악</string>"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/values-ko/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5-9 Lidder</string>"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="res/values-lb/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 dainos</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-lt/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 ഗാനങ്ങൾ</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-ml/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 गाणी</string>"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="res/values-mr/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 sanger</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-nb/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 nummers</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-nl/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 ଗୀତ</string>"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="res/values-or/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 piosenek</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-pl/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 músicas</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-pt-rPT/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 melodii</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-ro/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 skladby</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-sk/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 skladbe</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-sl/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 песама</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-sr/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 låtar</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-sv/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 பாடல்கள்</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ta/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 పాటలు</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-te/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 เพลง</string>"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="res/values-th/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 şarkı</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-tr/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5-9 نەغمە ناخشا</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ug/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 пісень</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-uk/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 bài hát</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-vi/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2-4 首歌曲</string>"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="res/values-zh-rCN/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 首樂曲</string>"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="res/values-zh-rTW/strings.xml"
+ line="133"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5-9 أغاني</string>"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="res/values-ar/strings.xml"
+ line="134"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 mahnı</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-az/strings.xml"
+ line="134"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 песни</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-bg/strings.xml"
+ line="134"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 cançons</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-ca/strings.xml"
+ line="134"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 skladeb</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-cs/strings.xml"
+ line="134"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 τραγούδια</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-el/strings.xml"
+ line="134"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 songs</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-en-rAU/strings.xml"
+ line="134"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 songs</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-en-rCA/strings.xml"
+ line="134"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 songs</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-en-rGB/strings.xml"
+ line="134"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 songs</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-en-rIN/strings.xml"
+ line="134"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 laulu</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-et/strings.xml"
+ line="134"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 kappaletta</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-fi/strings.xml"
+ line="134"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 nûmers</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-fy-rNL/strings.xml"
+ line="134"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 cancións</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-gl/strings.xml"
+ line="134"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 dal</string>"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="res/values-hu/strings.xml"
+ line="134"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 canzoni</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-it/strings.xml"
+ line="134"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5-9곡의 음악</string>"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/values-ko/strings.xml"
+ line="134"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 músicas</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-pt-rPT/strings.xml"
+ line="134"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 melodii</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values-ro/strings.xml"
+ line="134"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 skladieb</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values-sk/strings.xml"
+ line="134"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 skladb</string>"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="res/values-sl/strings.xml"
+ line="134"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 เพลง</string>"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="res/values-th/strings.xml"
+ line="134"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 şarkı</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values-tr/strings.xml"
+ line="134"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5-9 首歌曲</string>"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="res/values-zh-rCN/strings.xml"
+ line="134"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 首樂曲</string>"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="res/values-zh-rTW/strings.xml"
+ line="134"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_seconds">30 - 60 seconds</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values/strings.xml"
+ line="153"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_1_to_2_minutes">1 - 2 minutes</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values/strings.xml"
+ line="154"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_3_minutes">2 - 3 minutes</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values/strings.xml"
+ line="155"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_3_to_4_minutes">3 - 4 minutes</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values/strings.xml"
+ line="156"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_4_to_5_minutes">4 - 5 minutes</string>"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="res/values/strings.xml"
+ line="157"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_10_minutes">5 - 10 minutes</string>"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="res/values/strings.xml"
+ line="158"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_10_to_30_minutes">10 - 30 minutes</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values/strings.xml"
+ line="159"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_30_to_60_minutes">30 - 60 minutes</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="res/values/strings.xml"
+ line="160"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_2_to_4_songs">2 - 4 songs</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values/strings.xml"
+ line="164"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyDashes"
+ message="Replace "-" with an "en dash" character (–, &#8211;) ?"
+ errorLine1=" <string name="header_5_to_9_songs">5 - 9 songs</string>"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="res/values/strings.xml"
+ line="165"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">Til að bæta lögum á þennan spilunarlista, ýttu þá á valmyndina á lagi, hljómplötu eða flytjanda og veldu \"Bæta á spilunarlista\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-is/strings.xml"
+ line="27"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">Til að bæta lögum í spilunarbiðröðina þína, ýttu þá á valmyndina á lagi, hljómplötu eða flytjanda og veldu \"Bæta í biðröð\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-is/strings.xml"
+ line="28"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="menu_shuffle_recent">\"VIru kuerzem ofgespillt\" mëschen</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-lb/strings.xml"
+ line="35"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="menu_shuffle_last_added">\"Fir d\'lescht dobäigesat\" mëschen</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-lb/strings.xml"
+ line="36"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="clear_recent_title">לנקות רשימת \"הושמעו לאחרונה\"?</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-iw/strings.xml"
+ line="66"
+ column="39"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="clear_last_added">לנקות רשימת \"נוספו לאחרונה\"?</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-iw/strings.xml"
+ line="67"
+ column="37"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="clear_last_added">\"Fir d\'lescht dobäigesat\" eidel maachen?</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-lb/strings.xml"
+ line="67"
+ column="37"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="context_menu_remove_from_recent">Aus \"Kürzlich gehört\" entfernen</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-de/strings.xml"
+ line="80"
+ column="52"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="context_menu_remove_from_recent">Aus der \"Viru kuerzem gelauschtert\"-Lëscht läschen</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-lb/strings.xml"
+ line="80"
+ column="52"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="settings_show_lyrics_summary">Fir Lidder déi en \"srt\"-Fichier hunn</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-lb/strings.xml"
+ line="100"
+ column="49"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">Lai šim atskaņošanas sarakstam pievienotu dziesmas, piesitiet dziesmas, albuma vai izpildītāja izvēlnei un izvēlieties \"Pievienot atskaņošanas sarakstam\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-lv/strings.xml"
+ line="106"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">ಪ್ಲೇಪಟ್ಟಿಗೆ ಹಾಡುಗಳನ್ನು ಸೇರಿಸಲು, ಕಲಾವಿದ, ಆಲ್ಬಂ ಅಥವ ಹಾಡಿನ ಮೇಲಿರುವ ಆಯ್ಕೆಗಳ ಮೆನು ಸ್ಪರ್ಶಿಸಿ ಹಾಗು \"ಪ್ಲೇಪಟ್ಟಿಗೆ ಸೇರಿಸಿ\" ಆಯ್ಕೆಮಾಡಿ.</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-kn/strings.xml"
+ line="109"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">Om Liedjies by te voeg tot hierdie speel lys, raak die opsies kieslys op \'n liedjie, album of kunstenaar en kies \"Voeg by speellys\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-af/strings.xml"
+ line="110"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">এই প্লে-সূচীলৈ গীত যোগ কৰিবলৈ, এটা গীত, এলবাম বা শিল্পীৰ ওপৰত বিকল্প মেনু টেপ কৰক আৰু \"Add to playlist\" চয়ন কৰক।</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-as/strings.xml"
+ line="110"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">Каб дадаць трэкі ў плэйліст, націсніце на меню опцый трэка, альбома ці выканаўца і выберыце \"Дадаць у плэйліст\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-be/strings.xml"
+ line="110"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">Tryk på valgmulighedsmenuen på en sang, et album, eller en kunstner, og vælg \"Føj til afspilningsliste\", for at føje sange til denne afspilningsliste.</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-da/strings.xml"
+ line="110"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">Abestiak erreprodukzio-zerrendara gehitzeko, sakatu abesti, album edo artista baten aukeren menuan eta hautatu \"Gehitu erreprodukzio-zerrendara\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-eu/strings.xml"
+ line="110"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">આ પ્લેલિસ્ટમાં ગીતો ઉમેરવા, ગીત, આલ્બમ અથવા આર્ટિસ્ટ પરના વિકલ્પ મેન્યૂ પર ટૅપ કરો અને \"પ્લેલિસ્ટમાં ઍડ કરો\" પસંદ કરો.</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-gu/strings.xml"
+ line="110"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">इस प्लेसूची में गाने जोड़ेने के लिए, गाने, एल्बम या कलाकार के विकल्प मेनू को टैप करें और \"प्लेसूची में जोड़ें\" को चुनें।</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-hi/strings.xml"
+ line="110"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">Za dodavanje pjesme u playlistu dodirnite opcije pjesme,albuma ili autora i odaberite \"Dodaj u playlistu\"</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-hr/strings.xml"
+ line="110"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">Untuk menambahkan lagu ke daftar putar ini, tekan menu pilihan pada lagu, album atau artis dan pilih \"Tambahkan ke daftar putar\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-in/strings.xml"
+ line="110"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">כדי להוסיף שירים לרשימת ההשמעה הזו, הקש על תפריט האפשרויות של שיר, אלבום או אמן ובחר \"הוסף לרשימת השמעה\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-iw/strings.xml"
+ line="110"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">Fir Lidder an dës Ofspilllëscht ze setzen, dréck den Optiounsmenü op engem Lidd, Album oder Interpret, a wiel \"An d\'Ofspilllëscht setzen\" aus.</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-lb/strings.xml"
+ line="110"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">ഈ പ്ലേ ലിസ്റ്റിലേക്ക് ഗാനങ്ങള് ചേര്ക്കാന്, ഒരു ഗാനം, ആൽബം അല്ലെങ്കിൽ ആർട്ടിസ്റ്റിന്റെ ഐച്ഛികങ്ങള് മെനുവില് അമര്ത്തി \"പ്ലേ ലിസ്റ്റില് ചേര്ക്കുക\" തിരഞ്ഞെടുക്കുക.</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ml/strings.xml"
+ line="110"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">प्लेलिस्टमध्ये गाणी जोडण्यासाठी, गाणे, अल्बम किंवा कलाकारावरील पर्याय मेनू टॅप करा आणि \"प्लेलिस्टमध्ये जोडा\" निवडा.</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-mr/strings.xml"
+ line="110"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">For å legge til sanger i denne spillelisten, trykk på Alternativer-menyen på en sang, et album eller en artist og velg \"Legg til i spilleliste\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-nb/strings.xml"
+ line="110"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">ଏହି ଚାଳନତାଲିକାରେ ଗୀତ ଯୋଗ କରିବା ପାଇଁ, ଗୀତ, ଆଲ୍ବମ୍ ବା କଳାକାରରେ ଥିବା ବିକଳ୍ପ ମେନ୍ୟୁରେ ଟ୍ୟାପ୍ କରନ୍ତୁ ଓ \"ଚାଳନତାଲିକାରେ ଯୋଗ କରନ୍ତୁ\"ରେ ଚୟନ କରନ୍ତୁ।</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-or/strings.xml"
+ line="110"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">Aby dodawać utwory do playlisty, użyj przycisku opcji na utworze, albumie lub artyście i wybierz \"Dodaj do playlisty\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-pl/strings.xml"
+ line="110"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">Да додаш песме у ову плејлисту, додирни опциони мени песме, албума или уметника и одабери \"Додај у плејлисту\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-sr/strings.xml"
+ line="110"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">För att lägga till sånger till denna spellista, tryck på alternativmenyn på en låt, album eller artist och välj \"Lägg till i spellista\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-sv/strings.xml"
+ line="110"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">இந்த இசைப்பட்டியலில் பாடல்களை சேர்க்க, ஒரு பாடல், ஆல்பம் அல்லது கலைஞரில் உள்ள விருப்பங்கள் மெனுவை தட்டி \"இசைப்பட்டியலில் சேர்\"ஐ தேர்வுசெய்</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ta/strings.xml"
+ line="110"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">ప్లేజాబితాకు పాటలను జోడించడానికి, పాట, ఆల్బమ్ లేదా కళాకారుడు పైన ఉన్నఆప్షనుల మెనూను ట్యాప్ చేయండి మరియు \"ప్లేజాబితాకు జోడించుము\" ఎంచుకోండి.</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-te/strings.xml"
+ line="110"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">تىزىملىككە ناخشا قوشۇش ئۈچۈن، تىزىملىكتىكى ناخشا، پىلاستنكا ياكى ئارتىسنى تاللاڭ، ھەمدە \"تىزىملىككە ناخشا قوشۇش\"نى تاللاڭ.</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ug/strings.xml"
+ line="110"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">Щоб додати пісню у цей список відтворення, торкніться меню параметрів на композиції, альбому або виконавця та виберіть \"Додати до списку відтворення\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-uk/strings.xml"
+ line="110"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">Để 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 \"Thêm vào danh sách phát\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-vi/strings.xml"
+ line="110"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes ('') with directional quotes (‘’, &#8216; and &#8217;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">Om nummers toe te voegen aan deze afspeellijst, tik op het menu van een nummer, album of artiest en selecteer \'Toevoegen aan afspeellijst\'.</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-nl/strings.xml"
+ line="110"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">لإضافة الأغاني إلى قائمة التشغيل هذه، انقر فوق قائمة خيارات أي أغنية أو ألبوم أو الفنان وحدد \"إضافة إلى قائمة التشغيل\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ar/strings.xml"
+ line="111"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">Bu oynatma siyahısına mahnı əlavə etmək üçün seçimlərdən \"Oynatma siyahısına əlavə et\"ə toxunun.</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-az/strings.xml"
+ line="111"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">За да добавите песни към този списък за изпълнение, натиснете менюто опции по песен, албум или изпълнител и изберете \"Добави към списъка за изпълнение\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-bg/strings.xml"
+ line="111"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">Per afegir cançons a aquesta llista de reproducció, prem al menú opcions en una cançó, àlbum o artista i selecciona \"Afegeix a la llista de reproducció\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ca/strings.xml"
+ line="111"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">I ychwanegu traciau at y rhestr chwarae hon, tapia dewislen opsiynau trac, casgliad neu artist a dewis \"Ychwanegu i\'r rhestr chwarae\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-cy/strings.xml"
+ line="111"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">Tippen Sie im Optionsmenü auf einen Titel, Künstler oder ein Album und wählen Sie \"Zur Wiedergabeliste hinzufügen\", um den jeweiligen Eintrag zu dieser Liste hinzuzufügen.</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-de/strings.xml"
+ line="111"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">Για να προσθέσετε τραγούδια σε αυτήν τη λίστα αναπαραγωγής, ανοίξτε το μενού επιλογών σε ένα τραγούδι, άλμπουμ ή καλλιτέχνη και επιλέξτε \"Προσθήκη στη λίστα αναπαραγωγής\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-el/strings.xml"
+ line="111"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">To add songs to this playlist, tap the options menu on a song, album or artist and select \"Add to playlist\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rAU/strings.xml"
+ line="111"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">To add songs to this playlist, tap the options menu on a song, album or artist and select \"Add to playlist\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rCA/strings.xml"
+ line="111"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">To add songs to this playlist, tap the options menu on a song, album or artist and select \"Add to playlist\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rGB/strings.xml"
+ line="111"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">To add songs to this playlist, tap the options menu on a song, album or artist and select \"Add to playlist\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rIN/strings.xml"
+ line="111"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">Lugude lisamiseks käesolevasse esitlusnimekirja, koputa laulu, albumi või artisti lisavalikute menüül ja vali \"Lisa esitlusloendisse\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-et/strings.xml"
+ line="111"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">Lisätäksesi kappaleita soittolistaan, avaa valikko kappaleen, albumin tai esittäjän kohdalla ja valitse \"Lisää soittolistaan\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-fi/strings.xml"
+ line="111"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">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 \"Hozzáadás a lejátszási listához\" lehetőséget.</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-hu/strings.xml"
+ line="111"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">Per aggiungere canzoni a questa playlist tocca il menu opzioni su una canzone, album o artista e seleziona \"Aggiungi alla playlist\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-it/strings.xml"
+ line="111"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">재생목록에 음악를 추가하려면 음악, 앨범, 또는 아티스트의 옵션 메뉴를 탭하여 연 뒤 \"재생목록에 추가\"를 선택하십시오.</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ko/strings.xml"
+ line="111"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">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 \"Adicionar à lista de reprodução\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-pt-rBR/strings.xml"
+ line="111"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">Para adicionar músicas a esta lista de reprodução, toque no menu de opções numa música, álbum ou artista e selecione \"Adicionar à lista de reprodução\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-pt-rPT/strings.xml"
+ line="111"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">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 \"Adăugați la lista de redare\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ro/strings.xml"
+ line="111"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">Pre pridanie skladieb do zoznamu skladieb kliknite na ponuku s možnosťami na skladbe, albume alebo interpretovi a vyberte \"Pridať do zoznamu skladieb\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-sk/strings.xml"
+ line="111"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">ในการเพิ่มเพลงไปยังรายการที่จะเล่น ให้แตะเมนูตัวเลือกบนเพลง อัลบั้มหรือศิลปินแล้วเลือก \"เพิ่มไปยังรายการเพลง\"</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-th/strings.xml"
+ line="111"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">Bu çalma listesine şarkı eklemek için, seçeneklerden \"Çalma listesine ekle\"yi tıklayın.</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-tr/strings.xml"
+ line="111"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">Lai pievienotu dziesmas atskaņošanas rindai, piesitiet dziesmas, albuma vai izpildītāja izvēlnei un izvēlieties \"Pievienot rindai\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-lv/strings.xml"
+ line="114"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">ಪ್ಲೇ ಸರದಿಗೆ ಹಾಡುಗಳನ್ನು ಸೇರಿಸಲು, ಕಲಾವಿದ, ಆಲ್ಬಂ ಅಥವ ಹಾಡಿನ ಮೇಲಿರುವ ಆಯ್ಕೆಗಳ ಮೆನು ಸ್ಪರ್ಶಿಸಿ ಹಾಗು \"ಸರದಿಗೆ ಸೇರಿಸಿ\" ಆಯ್ಕೆಮಾಡಿ.</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-kn/strings.xml"
+ line="117"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">Om Liedjies by te voeg tot jou speel waglys, raak die opsies kieslys op \'n liedjie, album of kunstenaar en kies \"Voeg by waglys\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-af/strings.xml"
+ line="118"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">আপোনাৰ এই প্লে কিউলৈ গীত যোগ কৰিবলৈ, এটা গীত, এলবাম বা শিল্পীৰ ওপৰত বিকল্প মেনু টেপ কৰক আৰু \"Add to queue\" চয়ন কৰক।</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-as/strings.xml"
+ line="118"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">Каб дадаць трэкі ў чаргу прайгравання, націсніце на меню опцый трэка, альбома ці выканаўца і выберыце \"Дадаць у чаргу\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-be/strings.xml"
+ line="118"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">Tryk på valgmulighedsmenuen, på en sang, et album, eller en kunstner, og vælg \"Føj til kø\", for at føje sange til din Afspilningskø.</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-da/strings.xml"
+ line="118"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">Abestiak erreprodukzio-zerrendara gehitzeko, sakatu abesti, album edo artista bat eta hautatu \"Gehitu ilarara\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-eu/strings.xml"
+ line="118"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">તમારી પ્લે હરોળમાં ગીતો ઉમેરવા, ગીત, આલ્બમ અથવા આર્ટિસ્ટ પરના વિકલ્પ મેન્યૂ પર ટૅપ કરો અને \"હરોળમાં ઍડ કરો\" પસંદ કરો.</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-gu/strings.xml"
+ line="118"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">अपनी प्ले कतार में गाने जोड़ने के लिए, किसी गाने, एल्बम, या कलाकार के विकल्प मेनू को टैप करें और \"कतार में जोड़ें\" को चुनें।</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-hi/strings.xml"
+ line="118"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">Za dodavanje pjesmi u red za reprodukciju, dodirnite opcije pjesme,albuma ili autora i odaberite \"Dodaj u red\"</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-hr/strings.xml"
+ line="118"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">Untuk menambahkan lagu ke Antrean Putar Anda, tekan menu pilihan pada lagu, album, atau artis dan pilih \"Tambahkan ke antrean\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-in/strings.xml"
+ line="118"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">כדי להוסיף שירים לתור ההשמעה שלך, הקש על תפריט האפשרויות של שיר, אלבום או אמן ובחר \"הוסף לתור\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-iw/strings.xml"
+ line="118"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">Fir Lidder an d\'Waardeschlaang ze setzen, dréck den Optiounsmenü bei engem Lidd, Album oder Interpret, a wiel \"An d\'Waardeschlaang setzen\" aus.</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-lb/strings.xml"
+ line="118"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">ഈ പ്ലേ ക്യൂവില് ഗാനങ്ങള് ചേർക്കാൻ, ഒരു ഗാനം, ആൽബം അല്ലെങ്കിൽ ആർട്ടിസ്റ്റിന്റെ ഐച്ഛികങ്ങള് മെനുവില് അമര്ത്തി "ക്യൂവില് ചേര്ക്കുക\" തിരഞ്ഞെടുക്കുക.</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ml/strings.xml"
+ line="118"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">प्ले रांगेमध्ये गाणी जोडण्यासाठी, गाणे, अल्बम किंवा कलाकारावरील पर्याय मेनू टॅप करा आणि \"प्ले रांगेमध्ये जोडा\" निवडा.</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-mr/strings.xml"
+ line="118"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">For å legge til sanger i spillekøen, trykk på Alternativer-menyen på en sang, et album eller en artist og velg \"Legg til i kø\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-nb/strings.xml"
+ line="118"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">ଏହି ପ୍ଲେତାଲିକାରେ ଗୀତ ଯୋଗ କରିବା ପାଇଁ, ଗୀତ, ଆଲ୍ବମ୍ ବା କଳାକାରରେ ଥିବା ବିକଳ୍ପ ମେନ୍ୟୁରେ ଟ୍ୟାପ୍ କରନ୍ତୁ ଓ \"ପ୍ଲେତାଲିକାରେ ଯୋଗ କରନ୍ତୁ\"ରେ ଚୟନ କରନ୍ତୁ।</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-or/strings.xml"
+ line="118"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">Aby dodać utwory do Kolejki Odtwarzania, użyj przycisku opcji na utworze, albumie lub artyście i wybierz \"Dodaj do kolejki\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-pl/strings.xml"
+ line="118"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">Да додаш песме у редослед за пуштање, додирни опциони мени на песми, албуму или уметнику и изабери \"Додај у редослед\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-sr/strings.xml"
+ line="118"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">För att lägga till sånger till din spelkö, tryck på alternativmenyn på en låt, album eller artist och välj \"Lägg till i spellista\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-sv/strings.xml"
+ line="118"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">இந்த சாரையில் பாடல்களை சேர்க்க, ஒரு பாடல், ஆல்பம் அல்லது கலைஞரில் உள்ள விருப்பங்கள் மெனுவை தட்டி \"வரிசையில் சேர்\"ஐ தேர்வுசெய்.</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ta/strings.xml"
+ line="118"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">మీరు ప్లే నిరీక్షణ క్రమానికి పాటలను జోడించేందుకు, పాట, ఆల్బమ్ లేదా కళాకారుడు పైన ఉన్నఆప్షనుల మెనూను ట్యాప్ చేయండి మరియు \"నిరీక్షణ క్రమానికి జోడించుము\" ఎంచుకోండి.</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-te/strings.xml"
+ line="118"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">قويۇش سېپىگە ناخشا قوشۇش ئۈچۈن، تىزىملىكتىكى ناخشا، پىلاستنكا ياكى ئارتىسنى تاللاڭ، ھەمدە \"سەپكە ناخشا قوشۇش\"نى تاللاڭ.</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ug/strings.xml"
+ line="118"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">Để 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 \"Thêm vào danh sách chờ\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-vi/strings.xml"
+ line="118"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes ('') with directional quotes (‘’, &#8216; and &#8217;) ?"
+ errorLine1=" <string name="empty_queue_secondary">Om nummers toe te voegen aan de wachtrij, tik op het menu van een nummer, album of artiest en selecteer \'Toevoegen aan wachtrij\'.</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-nl/strings.xml"
+ line="118"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">لإضافة الأغاني إلى قائمة الانتظار، انقر فوق قائمة خيارات أي أغنية أو ألبوم أو الفنان وحدد \"إضافة إلى قائمة الانتظار\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ar/strings.xml"
+ line="119"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">Çalma Növbəsinə mahnı əlavə etmək üçün, seçimlərdən \"Növbəyə əlavə et\"i seçin.</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-az/strings.xml"
+ line="119"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">За да добавите песни към опашката за изпълнение, натиснете менюто опции по песен, албум или изпълнител и изберете \"Добави към опашката за изпълнение\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-bg/strings.xml"
+ line="119"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">Per afegir cançons a la cua de reproducció, pica al menú opcions en una cançó, àlbum o artista i selecciona \"Afegeix a la cua\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ca/strings.xml"
+ line="119"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">I ychwanegu traciau i dy Giw Chwarae, tapia\'r ddewislen dewisiadau ar drac, casgliad neu artist a dewis \"Ychwanegu i\'r ciw\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-cy/strings.xml"
+ line="119"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">Um Titel zur Warteschlange hinzuzufügen, wählen Sie im Optionsmenü eines Titels, Albums oder Interpreten \"Zur Warteschlange hinzufügen\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-de/strings.xml"
+ line="119"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">Για να προσθέσετε τραγούδια στην ουρά αναπαραγωγής, ανοίξτε το μενού επιλογών σε ένα τραγούδι, άλμπουμ ή καλλιτέχνη και επιλέξτε \"Προσθήκη στην ουρά\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-el/strings.xml"
+ line="119"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">To add songs to your Play Queue, tap the options menu on a song, album, or artist and select \"Add to queue\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rAU/strings.xml"
+ line="119"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">To add songs to your Play Queue, tap the options menu on a song, album, or artist and select \"Add to queue\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rCA/strings.xml"
+ line="119"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">To add songs to your Play Queue, tap the options menu on a song, album, or artist and select \"Add to queue\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rGB/strings.xml"
+ line="119"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">To add songs to your Play Queue, tap the options menu on a song, album, or artist and select \"Add to queue\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-en-rIN/strings.xml"
+ line="119"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">Lugude lisamiseks esitlusjärjekorda, koputa laulu, albumi või artisti lisavalikute menüül ja vali \"Lisa järjekorda\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-et/strings.xml"
+ line="119"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">Lisätäksesi kappaleita jonoon, avaa valikko kappaleen, albumin tai esittäjän kohdalla ja valitse \"Lisää jonoon\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-fi/strings.xml"
+ line="119"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">Para engadir cancións á súa lista de espere, toque o menú de opcións dunha canción, álbum ou artista e seleccione \"Engadir á lista de espera\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-gl/strings.xml"
+ line="119"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">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 \"Hozzáadás a lejátszólistához\" opciót.</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-hu/strings.xml"
+ line="119"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">Per aggiungere canzoni alla tua coda di riproduzione, tocca il menu di opzioni su una canzone, un album o un artista e seleziona \"Aggiungi alla coda\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-it/strings.xml"
+ line="119"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">노래를 재생 대기열에 추가하려면 노래, 앨범, 또는 아티스트의 옵션 메뉴를 탭하여 연 뒤 \"대기열에 추가\"를 선택하십시오.</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ko/strings.xml"
+ line="119"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">Para adicionar músicas à sua fila de reprodução, toque no menu de opções de uma música, álbum ou artista e selecione \"Adicionar à fila\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-pt-rBR/strings.xml"
+ line="119"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">Para adicionar músicas à sua fila de reprodução, toque no menu de opções numa música, álbum ou artista e selecione \"Adicionar à fila\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-pt-rPT/strings.xml"
+ line="119"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">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 \"Adăugați la coadă\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-ro/strings.xml"
+ line="119"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">Pre pridanie skladieb do poradia na prehrávanie kliknite na ponuku s možnosťami na skladbe, albume alebo interpretovi a vyberte \"Pridať do poradia\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-sk/strings.xml"
+ line="119"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">ในการเพิ่มเพลงไปยังรายการที่เล่น ให้แตะเมนูตัวเลือกบนเพลงหรือศิลปินและเลือก \"เพิ่มไปยังคิวเล่น\"</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-th/strings.xml"
+ line="119"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">Çalma Kuyruğuna şarkı eklemek için şarkı, albüm veya sanatçı üzerindeki seçenekler menüsüne tıklayın ve \"Kuyruğa ekle\"yi seçin.</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-tr/strings.xml"
+ line="119"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="error_playing_track">Der Titel \"%1$s\" konnte nicht abgespielt werden.</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-de/strings.xml"
+ line="120"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="error_playing_track">Ei voi toistaa kappaletta \"%1$s\"</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values-fi/strings.xml"
+ line="120"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_playlist_secondary">To add songs to this playlist, tap the options menu on a song, album or artist and select \"Add to playlist\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values/strings.xml"
+ line="139"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="TypographyQuotes"
+ message="Replace straight quotes (") with directional quotes (“”, &#8220; and &#8221;) ?"
+ errorLine1=" <string name="empty_queue_secondary">To add songs to your Play Queue, tap the options menu on a song, album, or artist and select \"Add to queue\".</string>"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/values/strings.xml"
+ line="147"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="ConvertToWebp"
+ 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">
+ <location
+ file="res/mipmap-xxxhdpi/ic_foreground.png"/>
+ </issue>
+
+ <issue
+ id="SelectableText"
+ message="Consider making the text value selectable by specifying `android:textIsSelectable="true"`"
+ errorLine1=" <TextView"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/layout/activity_album_detail.xml"
+ line="30"
+ column="14"/>
+ </issue>
+
+ <issue
+ id="SelectableText"
+ message="Consider making the text value selectable by specifying `android:textIsSelectable="true"`"
+ errorLine1=" <TextView"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/layout/activity_album_detail.xml"
+ line="40"
+ column="14"/>
+ </issue>
+
+ <issue
+ id="SelectableText"
+ message="Consider making the text value selectable by specifying `android:textIsSelectable="true"`"
+ errorLine1=" <TextView"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/layout/activity_album_detail.xml"
+ line="73"
+ column="14"/>
+ </issue>
+
+ <issue
+ id="SelectableText"
+ message="Consider making the text value selectable by specifying `android:textIsSelectable="true"`"
+ errorLine1=" <TextView"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/layout/activity_audio_preview.xml"
+ line="80"
+ column="14"/>
+ </issue>
+
+ <issue
+ id="SelectableText"
+ message="Consider making the text value selectable by specifying `android:textIsSelectable="true"`"
+ errorLine1=" <TextView"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/layout/activity_audio_preview.xml"
+ line="92"
+ column="14"/>
+ </issue>
+
+ <issue
+ id="SelectableText"
+ message="Consider making the text value selectable by specifying `android:textIsSelectable="true"`"
+ errorLine1=" <TextView"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/layout/album_detail_song.xml"
+ line="36"
+ column="10"/>
+ </issue>
+
+ <issue
+ id="SelectableText"
+ message="Consider making the text value selectable by specifying `android:textIsSelectable="true"`"
+ errorLine1=" <TextView"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/layout/album_detail_song.xml"
+ line="42"
+ column="10"/>
+ </issue>
+
+ <issue
+ id="SelectableText"
+ message="Consider making the text value selectable by specifying `android:textIsSelectable="true"`"
+ errorLine1=" <TextView"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/layout/app_widget_large.xml"
+ line="87"
+ column="10"/>
+ </issue>
+
+ <issue
+ id="SelectableText"
+ message="Consider making the text value selectable by specifying `android:textIsSelectable="true"`"
+ errorLine1=" <TextView"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/layout/app_widget_large.xml"
+ line="94"
+ column="10"/>
+ </issue>
+
+ <issue
+ id="SelectableText"
+ message="Consider making the text value selectable by specifying `android:textIsSelectable="true"`"
+ errorLine1=" <TextView"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/layout/app_widget_large.xml"
+ line="100"
+ column="10"/>
+ </issue>
+
+ <issue
+ id="SelectableText"
+ message="Consider making the text value selectable by specifying `android:textIsSelectable="true"`"
+ errorLine1=" <TextView"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/layout/app_widget_large_alternate.xml"
+ line="47"
+ column="10"/>
+ </issue>
+
+ <issue
+ id="SelectableText"
+ message="Consider making the text value selectable by specifying `android:textIsSelectable="true"`"
+ errorLine1=" <TextView"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/layout/app_widget_large_alternate.xml"
+ line="54"
+ column="10"/>
+ </issue>
+
+ <issue
+ id="SelectableText"
+ message="Consider making the text value selectable by specifying `android:textIsSelectable="true"`"
+ errorLine1=" <TextView"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/layout/app_widget_large_alternate.xml"
+ line="60"
+ column="10"/>
+ </issue>
+
+ <issue
+ id="SelectableText"
+ message="Consider making the text value selectable by specifying `android:textIsSelectable="true"`"
+ errorLine1=" <TextView"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/layout/app_widget_small.xml"
+ line="59"
+ column="10"/>
+ </issue>
+
+ <issue
+ id="SelectableText"
+ message="Consider making the text value selectable by specifying `android:textIsSelectable="true"`"
+ errorLine1=" <TextView"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/layout/app_widget_small.xml"
+ line="66"
+ column="10"/>
+ </issue>
+
+ <issue
+ id="SelectableText"
+ message="Consider making the text value selectable by specifying `android:textIsSelectable="true"`"
+ errorLine1=" <TextView"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/layout/app_widget_small.xml"
+ line="72"
+ column="10"/>
+ </issue>
+
+ <issue
+ id="SelectableText"
+ message="Consider making the text value selectable by specifying `android:textIsSelectable="true"`"
+ errorLine1=" <TextView"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/layout/artist_detail_album.xml"
+ line="42"
+ column="14"/>
+ </issue>
+
+ <issue
+ id="SelectableText"
+ message="Consider making the text value selectable by specifying `android:textIsSelectable="true"`"
+ errorLine1=" <TextView"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/layout/artist_detail_song.xml"
+ line="39"
+ column="6"/>
+ </issue>
+
+ <issue
+ id="SelectableText"
+ message="Consider making the text value selectable by specifying `android:textIsSelectable="true"`"
+ errorLine1=" <TextView"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/layout/artist_detail_song.xml"
+ line="49"
+ column="6"/>
+ </issue>
+
+ <issue
+ id="SelectableText"
+ message="Consider making the text value selectable by specifying `android:textIsSelectable="true"`"
+ errorLine1=" <TextView"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/layout/audio_player_header_bar.xml"
+ line="37"
+ column="10"/>
+ </issue>
+
+ <issue
+ id="SelectableText"
+ message="Consider making the text value selectable by specifying `android:textIsSelectable="true"`"
+ errorLine1=" <TextView"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/layout/audio_player_header_bar.xml"
+ line="49"
+ column="10"/>
+ </issue>
+
+ <issue
+ id="SelectableText"
+ message="Consider making the text value selectable by specifying `android:textIsSelectable="true"`"
+ errorLine1=" <TextView"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/layout/bottom_action_bar.xml"
+ line="45"
+ column="10"/>
+ </issue>
+
+ <issue
+ id="SelectableText"
+ message="Consider making the text value selectable by specifying `android:textIsSelectable="true"`"
+ errorLine1=" <TextView"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/layout/bottom_action_bar.xml"
+ line="49"
+ column="10"/>
+ </issue>
+
+ <issue
+ id="SelectableText"
+ message="Consider making the text value selectable by specifying `android:textIsSelectable="true"`"
+ errorLine1=" <TextView"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/layout/grid_items_normal.xml"
+ line="51"
+ column="18"/>
+ </issue>
+
+ <issue
+ id="SelectableText"
+ message="Consider making the text value selectable by specifying `android:textIsSelectable="true"`"
+ errorLine1=" <TextView"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/layout/grid_items_normal.xml"
+ line="59"
+ column="18"/>
+ </issue>
+
+ <issue
+ id="SelectableText"
+ message="Consider making the text value selectable by specifying `android:textIsSelectable="true"`"
+ errorLine1=" <TextView"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/layout/header_bar.xml"
+ line="39"
+ column="6"/>
+ </issue>
+
+ <issue
+ id="SelectableText"
+ message="Consider making the text value selectable by specifying `android:textIsSelectable="true"`"
+ errorLine1="<TextView xmlns:android="http://schemas.android.com/apk/res/android""
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/layout/list_header.xml"
+ line="18"
+ column="2"/>
+ </issue>
+
+ <issue
+ id="SelectableText"
+ message="Consider making the text value selectable by specifying `android:textIsSelectable="true"`"
+ errorLine1=" <TextView"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/layout/list_item_common.xml"
+ line="36"
+ column="10"/>
+ </issue>
+
+ <issue
+ id="SelectableText"
+ message="Consider making the text value selectable by specifying `android:textIsSelectable="true"`"
+ errorLine1=" <TextView"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/layout/list_item_common.xml"
+ line="42"
+ column="10"/>
+ </issue>
+
+ <issue
+ id="SelectableText"
+ message="Consider making the text value selectable by specifying `android:textIsSelectable="true"`"
+ errorLine1=" <TextView"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/layout/list_item_common.xml"
+ line="49"
+ column="6"/>
+ </issue>
+
+ <issue
+ id="SelectableText"
+ message="Consider making the text value selectable by specifying `android:textIsSelectable="true"`"
+ errorLine1=" <TextView"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/layout/list_item_queue.xml"
+ line="44"
+ column="10"/>
+ </issue>
+
+ <issue
+ id="SelectableText"
+ message="Consider making the text value selectable by specifying `android:textIsSelectable="true"`"
+ errorLine1=" <TextView"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/layout/list_item_queue.xml"
+ line="51"
+ column="10"/>
+ </issue>
+
+ <issue
+ id="SelectableText"
+ message="Consider making the text value selectable by specifying `android:textIsSelectable="true"`"
+ errorLine1=" <TextView"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/layout/list_item_top_tracks.xml"
+ line="45"
+ column="14"/>
+ </issue>
+
+ <issue
+ id="SelectableText"
+ message="Consider making the text value selectable by specifying `android:textIsSelectable="true"`"
+ errorLine1=" <TextView"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/layout/list_item_top_tracks.xml"
+ line="65"
+ column="14"/>
+ </issue>
+
+ <issue
+ id="SelectableText"
+ message="Consider making the text value selectable by specifying `android:textIsSelectable="true"`"
+ errorLine1=" <TextView"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/layout/list_item_top_tracks.xml"
+ line="71"
+ column="14"/>
+ </issue>
+
+ <issue
+ id="SelectableText"
+ message="Consider making the text value selectable by specifying `android:textIsSelectable="true"`"
+ errorLine1=" <TextView"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/layout/main_album_flow.xml"
+ line="43"
+ column="6"/>
+ </issue>
+
+ <issue
+ id="SelectableText"
+ message="Consider making the text value selectable by specifying `android:textIsSelectable="true"`"
+ errorLine1=" <TextView"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/layout/main_playback_controls.xml"
+ line="27"
+ column="6"/>
+ </issue>
+
+ <issue
+ id="SelectableText"
+ message="Consider making the text value selectable by specifying `android:textIsSelectable="true"`"
+ errorLine1=" <TextView"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/layout/main_playback_controls.xml"
+ line="57"
+ column="6"/>
+ </issue>
+
+ <issue
+ id="SelectableText"
+ message="Consider making the text value selectable by specifying `android:textIsSelectable="true"`"
+ errorLine1=" <TextView"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/layout/playlist_detail_header.xml"
+ line="39"
+ column="10"/>
+ </issue>
+
+ <issue
+ id="SelectableText"
+ message="Consider making the text value selectable by specifying `android:textIsSelectable="true"`"
+ errorLine1=" <TextView"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="res/layout/playlist_detail_header.xml"
+ line="49"
+ column="10"/>
+ </issue>
+
+ <issue
+ id="NegativeMargin"
+ message="Margin values should not be negative"
+ errorLine1=" android:layout_marginTop="-2dp" />"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/layout/artist_detail_song.xml"
+ line="57"
+ column="9"/>
+ </issue>
+
+ <issue
+ id="ClickableViewAccessibility"
+ message="`AudioPreviewActivity#onTouch` should call `View#performClick` when a click is detected"
+ errorLine1=" public boolean onTouch(View v, MotionEvent event) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
+ line="527"
+ column="20"/>
+ </issue>
+
+ <issue
+ id="ClickableViewAccessibility"
+ message="`onTouch` lambda should call `View#performClick` when a click is detected"
+ errorLine1=" mRootView.setOnTouchListener((v, me) -> true);"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/BaseFragment.java"
+ line="77"
+ column="38"/>
+ </issue>
+
+ <issue
+ id="ClickableViewAccessibility"
+ message="Custom view `RepeatingImageButton` overrides `onTouchEvent` but not `performClick`"
+ errorLine1=" public boolean onTouchEvent(final MotionEvent event) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/RepeatingImageButton.java"
+ line="95"
+ column="20"/>
+ </issue>
+
+ <issue
+ id="ClickableViewAccessibility"
+ message="Custom view `SlidingUpPanelLayout` overrides `onTouchEvent` but not `performClick`"
+ errorLine1=" public boolean onTouchEvent(MotionEvent ev) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="776"
+ column="20"/>
+ </issue>
+
+ <issue
+ id="ContentDescription"
+ message="Missing `contentDescription` attribute on image"
+ errorLine1=" <ImageView"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="res/layout/activity_album_detail.xml"
+ line="15"
+ column="10"/>
+ </issue>
+
+ <issue
+ id="ContentDescription"
+ message="Missing `contentDescription` attribute on image"
+ errorLine1=" <ImageView"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="res/layout/activity_album_detail.xml"
+ line="61"
+ column="14"/>
+ </issue>
+
+ <issue
+ id="ContentDescription"
+ message="Missing `contentDescription` attribute on image"
+ errorLine1=" <ImageView"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="res/layout/album_detail_song.xml"
+ line="14"
+ column="10"/>
+ </issue>
+
+ <issue
+ id="ContentDescription"
+ message="Missing `contentDescription` attribute on image"
+ errorLine1=" <ImageView"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="res/layout/album_detail_song.xml"
+ line="51"
+ column="6"/>
+ </issue>
+
+ <issue
+ id="ContentDescription"
+ message="Missing `contentDescription` attribute on image"
+ errorLine1=" <ImageView"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="res/layout/artist_detail_song.xml"
+ line="5"
+ column="6"/>
+ </issue>
+
+ <issue
+ id="ContentDescription"
+ message="Missing `contentDescription` attribute on image"
+ errorLine1=" <ImageView"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="res/layout/artist_detail_song.xml"
+ line="25"
+ column="10"/>
+ </issue>
+
+ <issue
+ id="ContentDescription"
+ message="Missing `contentDescription` attribute on image"
+ errorLine1=" <ImageView"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="res/layout/artist_detail_song.xml"
+ line="59"
+ column="6"/>
+ </issue>
+
+ <issue
+ id="ContentDescription"
+ message="Missing `contentDescription` attribute on image"
+ errorLine1=" <ImageView"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="res/layout/edit_queue_list_item.xml"
+ line="22"
+ column="6"/>
+ </issue>
+
+ <issue
+ id="ContentDescription"
+ message="Missing `contentDescription` attribute on image"
+ errorLine1=" <ImageView"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="res/layout/edit_queue_list_item.xml"
+ line="38"
+ column="6"/>
+ </issue>
+
+ <issue
+ id="ContentDescription"
+ message="Missing `contentDescription` attribute on image"
+ errorLine1=" <ImageView"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="res/layout/edit_track_list_item.xml"
+ line="22"
+ column="6"/>
+ </issue>
+
+ <issue
+ id="ContentDescription"
+ message="Missing `contentDescription` attribute on image"
+ errorLine1=" <ImageView"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="res/layout/edit_track_list_item.xml"
+ line="42"
+ column="6"/>
+ </issue>
+
+ <issue
+ id="ContentDescription"
+ message="Missing `contentDescription` attribute on image"
+ errorLine1=" <ImageView"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="res/layout/header_bar.xml"
+ line="29"
+ column="6"/>
+ </issue>
+
+ <issue
+ id="ContentDescription"
+ message="Missing `contentDescription` attribute on image"
+ errorLine1=" <ImageView"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="res/layout/header_bar.xml"
+ line="51"
+ column="6"/>
+ </issue>
+
+ <issue
+ id="ContentDescription"
+ message="Missing `contentDescription` attribute on image"
+ errorLine1=" <ImageView"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="res/layout/list_item_queue.xml"
+ line="27"
+ column="6"/>
+ </issue>
+
+ <issue
+ id="RtlSymmetry"
+ message="When you define `paddingStart` you should probably also define `paddingEnd` for right-to-left symmetry"
+ errorLine1=" android:paddingStart="@dimen/bottom_action_bar_info_padding_left" >"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/layout/bottom_action_bar.xml"
+ line="43"
+ column="9"/>
+ </issue>
+
+ <issue
+ id="RtlSymmetry"
+ message="When you define `paddingEnd` you should probably also define `paddingStart` for right-to-left symmetry"
+ errorLine1=" android:paddingEnd="@dimen/list_item_general_margin" >"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/layout/edit_track_list_item.xml"
+ line="37"
+ column="9"/>
+ </issue>
+
+ <issue
+ id="RtlSymmetry"
+ message="When you define `paddingStart` you should probably also define `paddingEnd` for right-to-left symmetry"
+ errorLine1=" android:paddingStart="@dimen/drag_and_drop_width""
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/layout/header_bar.xml"
+ line="24"
+ column="5"/>
+ </issue>
+
+ <issue
+ id="RtlSymmetry"
+ message="When you define `paddingStart` you should probably also define `paddingEnd` for right-to-left symmetry"
+ errorLine1=" android:paddingStart="@dimen/list_item_queue_text_padding_left""
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/layout/list_item_queue.xml"
+ line="41"
+ column="9"/>
+ </issue>
+
+ <issue
+ id="RtlSymmetry"
+ message="When you define `paddingStart` you should probably also define `paddingEnd` for right-to-left symmetry"
+ errorLine1=" android:paddingStart="@dimen/list_preferred_item_padding" >"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="res/layout/list_item_top_tracks.xml"
+ line="63"
+ column="13"/>
+ </issue>
+
+ <issue
+ id="RtlEnabled"
+ message="The project references RTL attributes, but does not explicitly enable or disable RTL support with `android:supportsRtl` in the manifest">
+ <location
+ file="AndroidManifest.xml"/>
+ </issue>
+
+ <issue
+ id="KotlinPropertyAccess"
+ 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"
+ errorLine1=" protected long getSourceId() {"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/DetailSongAdapter.java"
+ line="99"
+ column="20"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String mAlbumName;"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/model/Album.java"
+ line="39"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String mArtistName;"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/model/Album.java"
+ line="44"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String mYear;"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/model/Album.java"
+ line="54"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Album(final long albumId, final String albumName, final String artistName,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/model/Album.java"
+ line="65"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Album(final long albumId, final String albumName, final String artistName,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/model/Album.java"
+ line="65"
+ column="68"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final int songNumber, final String albumYear) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/model/Album.java"
+ line="66"
+ column="46"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public AlbumAdapter(final FragmentActivity context, final int layoutId,"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/AlbumAdapter.java"
+ line="77"
+ column="31"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final Consumer<Album> onItemClickedListener) {"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/AlbumAdapter.java"
+ line="78"
+ column="31"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Album getItem(int pos) {"
+ errorLine2=" ~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/AlbumAdapter.java"
+ line="98"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setData(List<Album> albums) {"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/AlbumAdapter.java"
+ line="145"
+ column="25"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setPopupMenuClickedListener(IPopupMenuCallback.IListener listener) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/AlbumAdapter.java"
+ line="184"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void addAlbumArtistDetails(AlbumArtistDetails details) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/AlbumArtPagerAdapter.java"
+ line="65"
+ column="46"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static AlbumArtistDetails getAlbumArtistDetails(long audioId) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/AlbumArtPagerAdapter.java"
+ line="81"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public AlbumArtPagerAdapter(FragmentManager fm) {"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/AlbumArtPagerAdapter.java"
+ line="99"
+ column="33"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static AlbumArtFragment newInstance(final long trackId) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/AlbumArtPagerAdapter.java"
+ line="172"
+ column="23"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onCreate(final Bundle savedInstanceState) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/AlbumArtPagerAdapter.java"
+ line="181"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public View onCreateView(final LayoutInflater inflater, final ViewGroup container,"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/AlbumArtPagerAdapter.java"
+ line="190"
+ column="16"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public View onCreateView(final LayoutInflater inflater, final ViewGroup container,"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/AlbumArtPagerAdapter.java"
+ line="190"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public View onCreateView(final LayoutInflater inflater, final ViewGroup container,"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/AlbumArtPagerAdapter.java"
+ line="190"
+ column="71"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final Bundle savedInstanceState) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/AlbumArtPagerAdapter.java"
+ line="191"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String mAlbumName;"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/model/AlbumArtistDetails.java"
+ line="25"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String mArtistName;"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/model/AlbumArtistDetails.java"
+ line="26"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected String getTitle() {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/AlbumDetailFragment.java"
+ line="72"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected PopupMenuHelper createActionMenuHelper() {"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/AlbumDetailFragment.java"
+ line="94"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void update(List<Song> songs) {"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/AlbumDetailFragment.java"
+ line="183"
+ column="24"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public PagerAdapter.MusicFragments getMusicFragmentParent() {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/AlbumDetailFragment.java"
+ line="215"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onLoadFinished(@NonNull Loader<List<Song>> loader, List<Song> data) {"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/AlbumDetailFragment.java"
+ line="229"
+ column="68"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public AlbumDetailSongAdapter(FragmentActivity activity) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/AlbumDetailSongAdapter.java"
+ line="33"
+ column="35"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected Config.IdType getSourceType() {"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/AlbumDetailSongAdapter.java"
+ line="43"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected Holder newHolder(View root, ImageFetcher fetcher) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/AlbumDetailSongAdapter.java"
+ line="47"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected Holder newHolder(View root, ImageFetcher fetcher) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/AlbumDetailSongAdapter.java"
+ line="47"
+ column="32"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected Holder newHolder(View root, ImageFetcher fetcher) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/AlbumDetailSongAdapter.java"
+ line="47"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onCreate(final Bundle savedInstanceState) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/AlbumFragment.java"
+ line="91"
+ column="32"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public View onCreateView(final LayoutInflater inflater, final ViewGroup container,"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/AlbumFragment.java"
+ line="108"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public View onCreateView(final LayoutInflater inflater, final ViewGroup container,"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/AlbumFragment.java"
+ line="108"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public View onCreateView(final LayoutInflater inflater, final ViewGroup container,"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/AlbumFragment.java"
+ line="108"
+ column="67"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final Bundle savedInstanceState) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/AlbumFragment.java"
+ line="109"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Loader<SectionListContainer<Album>> onCreateLoader(final int id, final Bundle args) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/AlbumFragment.java"
+ line="149"
+ column="83"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final SectionListContainer<Album> data) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/AlbumFragment.java"
+ line="158"
+ column="38"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public AlbumLoader(final Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/AlbumLoader.java"
+ line="60"
+ column="30"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public AlbumLoader(final Context context, final Long artistId) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/AlbumLoader.java"
+ line="68"
+ column="30"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public AlbumLoader(final Context context, final Long artistId) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/AlbumLoader.java"
+ line="68"
+ column="53"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public List<Album> loadInBackground() {"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/AlbumLoader.java"
+ line="75"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static Cursor makeAlbumCursor(final Context context, final Long artistId) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/AlbumLoader.java"
+ line="137"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static Cursor makeAlbumCursor(final Context context, final Long artistId) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/AlbumLoader.java"
+ line="137"
+ column="48"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static Cursor makeAlbumCursor(final Context context, final Long artistId) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/AlbumLoader.java"
+ line="137"
+ column="71"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected Album mAlbum;"
+ errorLine2=" ~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/AlbumPopupMenuHelper.java"
+ line="35"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public AlbumPopupMenuHelper(Activity activity, FragmentManager fragmentManager) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/AlbumPopupMenuHelper.java"
+ line="37"
+ column="33"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public AlbumPopupMenuHelper(Activity activity, FragmentManager fragmentManager) {"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/AlbumPopupMenuHelper.java"
+ line="37"
+ column="52"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public abstract Album getAlbum(int position);"
+ errorLine2=" ~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/AlbumPopupMenuHelper.java"
+ line="42"
+ column="21"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public PopupMenuType onPreparePopupMenu(int position) {"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/AlbumPopupMenuHelper.java"
+ line="45"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected long[] getIdList() {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/AlbumPopupMenuHelper.java"
+ line="56"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected Config.IdType getSourceType() {"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/AlbumPopupMenuHelper.java"
+ line="66"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected String getArtistName() {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/AlbumPopupMenuHelper.java"
+ line="79"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public boolean onMenuItemClick(MenuItem item) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/AlbumPopupMenuHelper.java"
+ line="84"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected void updateMenuIds(PopupMenuType type, TreeSet<Integer> set) {"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/AlbumPopupMenuHelper.java"
+ line="100"
+ column="34"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected void updateMenuIds(PopupMenuType type, TreeSet<Integer> set) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/AlbumPopupMenuHelper.java"
+ line="100"
+ column="54"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public AlbumScrimImage(Context context, AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/AlbumScrimImage.java"
+ line="53"
+ column="28"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public AlbumScrimImage(Context context, AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/AlbumScrimImage.java"
+ line="53"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public ImageView getImageView() {"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/AlbumScrimImage.java"
+ line="73"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setTransitionDrawable(TransitionDrawable imageTransition,"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/AlbumScrimImage.java"
+ line="109"
+ column="39"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" TransitionDrawable paletteTransition) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/AlbumScrimImage.java"
+ line="110"
+ column="39"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setGradientDrawable(GradientDrawable gradientDrawable) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/AlbumScrimImage.java"
+ line="116"
+ column="37"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public AlbumSongLoader(final Context context, final Long albumId) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/AlbumSongLoader.java"
+ line="57"
+ column="34"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public AlbumSongLoader(final Context context, final Long albumId) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/AlbumSongLoader.java"
+ line="57"
+ column="57"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public List<Song> loadInBackground() {"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/AlbumSongLoader.java"
+ line="63"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static Cursor makeAlbumSongCursor(final Context context, final Long albumId) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/AlbumSongLoader.java"
+ line="109"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static Cursor makeAlbumSongCursor(final Context context, final Long albumId) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/AlbumSongLoader.java"
+ line="109"
+ column="52"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static Cursor makeAlbumSongCursor(final Context context, final Long albumId) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/AlbumSongLoader.java"
+ line="109"
+ column="75"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void draw(final Canvas canvas) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/AlphaPatternDrawable.java"
+ line="60"
+ column="28"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setColorFilter(final ColorFilter cf) {"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/AlphaPatternDrawable.java"
+ line="75"
+ column="38"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected void onBoundsChange(final Rect bounds) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/AlphaPatternDrawable.java"
+ line="80"
+ column="41"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" default void onAnimationStart(Animator animation) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/AnimatorEndListener.java"
+ line="23"
+ column="35"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" default void onAnimationCancel(Animator animation) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/AnimatorEndListener.java"
+ line="28"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" default void onAnimationRepeat(Animator animation) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/AnimatorEndListener.java"
+ line="33"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected PendingIntent buildPendingIntent(Context context, final String action,"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/appwidgets/AppWidgetBase.java"
+ line="28"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected PendingIntent buildPendingIntent(Context context, final String action,"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/appwidgets/AppWidgetBase.java"
+ line="28"
+ column="48"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected PendingIntent buildPendingIntent(Context context, final String action,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/appwidgets/AppWidgetBase.java"
+ line="28"
+ column="71"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final ComponentName serviceName) {"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/appwidgets/AppWidgetBase.java"
+ line="29"
+ column="54"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static synchronized AppWidgetLarge getInstance() {"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/appwidgets/AppWidgetLarge.java"
+ line="45"
+ column="32"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onUpdate(final Context context, final AppWidgetManager appWidgetManager,"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/appwidgets/AppWidgetLarge.java"
+ line="53"
+ column="32"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onUpdate(final Context context, final AppWidgetManager appWidgetManager,"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/appwidgets/AppWidgetLarge.java"
+ line="53"
+ column="55"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final int[] appWidgetIds) {"
+ errorLine2=" ~~~~~">
+ <location
+ file="src/org/lineageos/eleven/appwidgets/AppWidgetLarge.java"
+ line="54"
+ column="32"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void notifyChange(final MusicPlaybackService service, final String what) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/appwidgets/AppWidgetLarge.java"
+ line="99"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void notifyChange(final MusicPlaybackService service, final String what) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/appwidgets/AppWidgetLarge.java"
+ line="99"
+ column="72"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void performUpdate(final MusicPlaybackService service, final int[] appWidgetIds) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/appwidgets/AppWidgetLarge.java"
+ line="111"
+ column="37"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void performUpdate(final MusicPlaybackService service, final int[] appWidgetIds) {"
+ errorLine2=" ~~~~~">
+ <location
+ file="src/org/lineageos/eleven/appwidgets/AppWidgetLarge.java"
+ line="111"
+ column="73"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static synchronized AppWidgetLargeAlternate getInstance() {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/appwidgets/AppWidgetLargeAlternate.java"
+ line="47"
+ column="32"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onUpdate(final Context context, final AppWidgetManager appWidgetManager,"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/appwidgets/AppWidgetLargeAlternate.java"
+ line="55"
+ column="32"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onUpdate(final Context context, final AppWidgetManager appWidgetManager,"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/appwidgets/AppWidgetLargeAlternate.java"
+ line="55"
+ column="55"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final int[] appWidgetIds) {"
+ errorLine2=" ~~~~~">
+ <location
+ file="src/org/lineageos/eleven/appwidgets/AppWidgetLargeAlternate.java"
+ line="56"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void notifyChange(final MusicPlaybackService service, final String what) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/appwidgets/AppWidgetLargeAlternate.java"
+ line="102"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void notifyChange(final MusicPlaybackService service, final String what) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/appwidgets/AppWidgetLargeAlternate.java"
+ line="102"
+ column="72"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void performUpdate(final MusicPlaybackService service, final int[] appWidgetIds) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/appwidgets/AppWidgetLargeAlternate.java"
+ line="116"
+ column="37"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void performUpdate(final MusicPlaybackService service, final int[] appWidgetIds) {"
+ errorLine2=" ~~~~~">
+ <location
+ file="src/org/lineageos/eleven/appwidgets/AppWidgetLargeAlternate.java"
+ line="116"
+ column="73"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static synchronized AppWidgetSmall getInstance() {"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/appwidgets/AppWidgetSmall.java"
+ line="46"
+ column="32"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onUpdate(final Context context, final AppWidgetManager appWidgetManager,"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/appwidgets/AppWidgetSmall.java"
+ line="54"
+ column="32"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onUpdate(final Context context, final AppWidgetManager appWidgetManager,"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/appwidgets/AppWidgetSmall.java"
+ line="54"
+ column="55"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final int[] appWidgetIds) {"
+ errorLine2=" ~~~~~">
+ <location
+ file="src/org/lineageos/eleven/appwidgets/AppWidgetSmall.java"
+ line="55"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void notifyChange(final MusicPlaybackService service, final String what) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/appwidgets/AppWidgetSmall.java"
+ line="100"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void notifyChange(final MusicPlaybackService service, final String what) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/appwidgets/AppWidgetSmall.java"
+ line="100"
+ column="72"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void performUpdate(final MusicPlaybackService service, final int[] appWidgetIds) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/appwidgets/AppWidgetSmall.java"
+ line="112"
+ column="37"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void performUpdate(final MusicPlaybackService service, final int[] appWidgetIds) {"
+ errorLine2=" ~~~~~">
+ <location
+ file="src/org/lineageos/eleven/appwidgets/AppWidgetSmall.java"
+ line="112"
+ column="73"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String mBucketLabel;"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/model/Artist.java"
+ line="54"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Artist(final long artistId, final String artistName,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/model/Artist.java"
+ line="64"
+ column="46"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public ArtistAdapter(final FragmentActivity context, final int layoutId,"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/ArtistAdapter.java"
+ line="78"
+ column="32"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final Consumer<Integer> onItemClickListener) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/ArtistAdapter.java"
+ line="79"
+ column="32"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setPopupMenuClickedListener(IListener listener) {"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/ArtistAdapter.java"
+ line="140"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Artist getItem(int position) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/ArtistAdapter.java"
+ line="144"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setData(List<Artist> artists) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/ArtistAdapter.java"
+ line="148"
+ column="25"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public ArtistDetailAlbumAdapter(final FragmentActivity activity) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/ArtistDetailAlbumAdapter.java"
+ line="72"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Album getItem(int position) {"
+ errorLine2=" ~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/ArtistDetailAlbumAdapter.java"
+ line="131"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setPopupMenuClickedListener(IListener listener) {"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/ArtistDetailAlbumAdapter.java"
+ line="136"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public ViewHolder(View root) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/ArtistDetailAlbumAdapter.java"
+ line="145"
+ column="27"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setData(List<Album> albums) {"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/ArtistDetailAlbumAdapter.java"
+ line="153"
+ column="25"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected String getTitle() {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
+ line="140"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected PopupMenuHelper createActionMenuHelper() {"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
+ line="171"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public PagerAdapter.MusicFragments getMusicFragmentParent() {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
+ line="290"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public ArtistDetailSongAdapter(FragmentActivity activity) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/ArtistDetailSongAdapter.java"
+ line="31"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected Config.IdType getSourceType() {"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/ArtistDetailSongAdapter.java"
+ line="41"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected Holder newHolder(View root, ImageFetcher fetcher) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/ArtistDetailSongAdapter.java"
+ line="46"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected Holder newHolder(View root, ImageFetcher fetcher) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/ArtistDetailSongAdapter.java"
+ line="46"
+ column="32"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected Holder newHolder(View root, ImageFetcher fetcher) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/ArtistDetailSongAdapter.java"
+ line="46"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onCreate(final Bundle savedInstanceState) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/ArtistFragment.java"
+ line="102"
+ column="32"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public View onCreateView(final LayoutInflater inflater, final ViewGroup container,"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/ArtistFragment.java"
+ line="120"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public View onCreateView(final LayoutInflater inflater, final ViewGroup container,"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/ArtistFragment.java"
+ line="120"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public View onCreateView(final LayoutInflater inflater, final ViewGroup container,"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/ArtistFragment.java"
+ line="120"
+ column="67"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final Bundle savedInstanceState) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/ArtistFragment.java"
+ line="121"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Loader<SectionListContainer<Artist>> onCreateLoader(final int id, final Bundle args) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/ArtistFragment.java"
+ line="167"
+ column="84"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final SectionListContainer<Artist> data) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/ArtistFragment.java"
+ line="176"
+ column="38"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public ArtistLoader(final Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/ArtistLoader.java"
+ line="55"
+ column="31"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public List<Artist> loadInBackground() {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/ArtistLoader.java"
+ line="60"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static Cursor makeArtistCursor(final Context context) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/ArtistLoader.java"
+ line="119"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static Cursor makeArtistCursor(final Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/ArtistLoader.java"
+ line="119"
+ column="49"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public ArtistPopupMenuHelper(Activity activity, FragmentManager fragmentManager) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/ArtistPopupMenuHelper.java"
+ line="33"
+ column="34"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public ArtistPopupMenuHelper(Activity activity, FragmentManager fragmentManager) {"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/ArtistPopupMenuHelper.java"
+ line="33"
+ column="53"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public abstract Artist getArtist(int position);"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/ArtistPopupMenuHelper.java"
+ line="38"
+ column="21"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public PopupMenuType onPreparePopupMenu(int position) {"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/ArtistPopupMenuHelper.java"
+ line="41"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected Config.IdType getSourceType() {"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/ArtistPopupMenuHelper.java"
+ line="52"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected long[] getIdList() {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/ArtistPopupMenuHelper.java"
+ line="57"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected String getArtistName() {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/ArtistPopupMenuHelper.java"
+ line="69"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public boolean onMenuItemClick(MenuItem item) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/ArtistPopupMenuHelper.java"
+ line="74"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public AudioButton(final Context context, final AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/AudioButton.java"
+ line="36"
+ column="30"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public AudioButton(final Context context, final AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/AudioButton.java"
+ line="36"
+ column="53"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public boolean onLongClick(final View view) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/AudioButton.java"
+ line="47"
+ column="38"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public View onCreateView(@NonNull final LayoutInflater inflater, final ViewGroup container,"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
+ line="121"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public View onCreateView(@NonNull final LayoutInflater inflater, final ViewGroup container,"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
+ line="121"
+ column="76"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final Bundle savedInstanceState) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
+ line="122"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public boolean onOptionsItemSelected(MenuItem item) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
+ line="192"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onServiceConnected(final ComponentName name, final IBinder service) {"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
+ line="262"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onServiceConnected(final ComponentName name, final IBinder service) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
+ line="262"
+ column="68"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onServiceDisconnected(ComponentName name) {"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
+ line="272"
+ column="39"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onLyrics(String lyrics) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
+ line="489"
+ column="26"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
+ line="93"
+ column="35"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onStartTrackingTouch(SeekBar seekBar) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
+ line="100"
+ column="38"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onStopTrackingTouch(SeekBar seekBar) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
+ line="109"
+ column="37"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onCreate(Bundle savedInstanceState) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
+ line="187"
+ column="26"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Object onRetainCustomNonConfigurationInstance() {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
+ line="258"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onCompletion(MediaPlayer mp) {"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
+ line="479"
+ column="30"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public boolean onError(MediaPlayer mp, int what, int extra) {"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
+ line="488"
+ column="28"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onPrepared(MediaPlayer mp) {"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
+ line="521"
+ column="28"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public boolean onTouch(View v, MotionEvent event) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
+ line="527"
+ column="28"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public boolean onTouch(View v, MotionEvent event) {"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
+ line="527"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onClick(View v) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
+ line="546"
+ column="25"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public boolean onKeyDown(int keyCode, KeyEvent keyEvent) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
+ line="664"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected void init(final Bundle savedInstanceState) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/BaseActivity.java"
+ line="117"
+ column="31"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onServiceConnected(final ComponentName name, final IBinder service) {"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/BaseActivity.java"
+ line="151"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onServiceConnected(final ComponentName name, final IBinder service) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/BaseActivity.java"
+ line="151"
+ column="68"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onServiceDisconnected(final ComponentName name) {"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/BaseActivity.java"
+ line="161"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public boolean onCreateOptionsMenu(final Menu menu) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/BaseActivity.java"
+ line="165"
+ column="46"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public boolean onOptionsItemSelected(final MenuItem item) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/BaseActivity.java"
+ line="173"
+ column="48"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setupActionBar(String title) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/BaseActivity.java"
+ line="243"
+ column="32"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setActionBarTitle(String title) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/BaseActivity.java"
+ line="254"
+ column="35"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setMusicStateListenerListener(final MusicStateListener status) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/BaseActivity.java"
+ line="411"
+ column="53"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void removeMusicStateListenerListener(final MusicStateListener status) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/BaseActivity.java"
+ line="424"
+ column="56"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected ViewGroup mRootView;"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/BaseFragment.java"
+ line="35"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected abstract String getTitle();"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/BaseFragment.java"
+ line="37"
+ column="24"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onCreate(Bundle savedInstanceState) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/BaseFragment.java"
+ line="46"
+ column="26"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected HomeActivity getContainingActivity() {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/BaseFragment.java"
+ line="60"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public final View onCreateView(LayoutInflater inflater, ViewGroup container,"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/BaseFragment.java"
+ line="65"
+ column="18"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public final View onCreateView(LayoutInflater inflater, ViewGroup container,"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/BaseFragment.java"
+ line="65"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public final View onCreateView(LayoutInflater inflater, ViewGroup container,"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/BaseFragment.java"
+ line="65"
+ column="61"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" Bundle savedInstanceState) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/BaseFragment.java"
+ line="66"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected AlertDialog mPlaylistDialog;"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/menu/BasePlaylistDialog.java"
+ line="47"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected EditText mPlaylist;"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/menu/BasePlaylistDialog.java"
+ line="50"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected Button mSaveButton;"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/menu/BasePlaylistDialog.java"
+ line="53"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected String mPrompt;"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/menu/BasePlaylistDialog.java"
+ line="56"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected String mDefaultName;"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/menu/BasePlaylistDialog.java"
+ line="59"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onTextChanged(CharSequence s, int start, int before, int count) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/menu/BasePlaylistDialog.java"
+ line="103"
+ column="31"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void beforeTextChanged(final CharSequence s, final int start, final int count,"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/menu/BasePlaylistDialog.java"
+ line="108"
+ column="41"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public abstract void initialize(Bundle savedInstanceState);"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/menu/BasePlaylistDialog.java"
+ line="116"
+ column="37"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected ViewGroup mRootView;"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
+ line="69"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected SongListAdapter mAdapter;"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
+ line="74"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected RecyclerView mListView;"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
+ line="79"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected PopupMenuHelper mPopupMenuHelper;"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
+ line="84"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected LoadingEmptyContainer mLoadingEmptyContainer;"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
+ line="89"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onCreate(final Bundle savedInstanceState) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
+ line="98"
+ column="32"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected Config.IdType getFragmentSourceType() {"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
+ line="133"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected void updateMenuIds(TreeSet<Integer> set) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
+ line="137"
+ column="34"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public View onCreateView(final LayoutInflater inflater, final ViewGroup container,"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
+ line="142"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public View onCreateView(final LayoutInflater inflater, final ViewGroup container,"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
+ line="142"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public View onCreateView(final LayoutInflater inflater, final ViewGroup container,"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
+ line="142"
+ column="67"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final Bundle savedInstanceState) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
+ line="143"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setupNoResultsContainer(final NoResultsContainer empty) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
+ line="187"
+ column="47"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final SectionListContainer<Song> data) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
+ line="204"
+ column="38"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected long[] getSongIdsFromAdapter() {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
+ line="223"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected SongListAdapter createAdapter() {"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
+ line="257"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public LoaderManager getFragmentLoaderManager() {"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
+ line="272"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public BitmapWithColors(Bitmap bitmap, int bitmapKey) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/colors/BitmapWithColors.java"
+ line="80"
+ column="29"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public BitmapWithColors(Bitmap bitmap, int bitmapKey, int vibrantColor, int vibrantDarkColor) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/colors/BitmapWithColors.java"
+ line="91"
+ column="29"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Bitmap getBitmap() {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/colors/BitmapWithColors.java"
+ line="97"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected Drawable mFromDrawable;"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
+ line="49"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public BitmapWorkerTask(final String key, final ImageView imageView, final ImageType imageType,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
+ line="72"
+ column="35"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public BitmapWorkerTask(final String key, final ImageView imageView, final ImageType imageType,"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
+ line="72"
+ column="53"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public BitmapWorkerTask(final String key, final ImageView imageView, final ImageType imageType,"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
+ line="72"
+ column="80"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final Drawable fromDrawable, final Context context) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
+ line="73"
+ column="35"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final Drawable fromDrawable, final Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
+ line="73"
+ column="64"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public BitmapWorkerTask(final String key, final ImageView imageView,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
+ line="86"
+ column="35"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public BitmapWorkerTask(final String key, final ImageView imageView,"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
+ line="86"
+ column="53"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final ImageType imageType, final Drawable fromDrawable,"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
+ line="87"
+ column="35"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final ImageType imageType, final Drawable fromDrawable,"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
+ line="87"
+ column="62"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final Context context, final boolean scaleImgToView) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
+ line="88"
+ column="35"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected ImageView getAttachedImageView() {"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
+ line="109"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected Bitmap getBitmapInBackground(final String... params) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
+ line="128"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected Bitmap getBitmapInBackground(final String... params) {"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
+ line="128"
+ column="50"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected TransitionDrawable createImageTransitionDrawable(final Bitmap bitmap) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
+ line="139"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected TransitionDrawable createImageTransitionDrawable(final Bitmap bitmap) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
+ line="139"
+ column="70"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected TransitionDrawable createImageTransitionDrawable(final Bitmap bitmap,"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
+ line="151"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected TransitionDrawable createImageTransitionDrawable(final Bitmap bitmap,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
+ line="151"
+ column="70"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public TransitionDrawable mImageViewBitmapDrawable;"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/BlurBitmapWorkerTask.java"
+ line="41"
+ column="16"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public BlurBitmapWorkerTask(final String key, final AlbumScrimImage albumScrimImage,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/BlurBitmapWorkerTask.java"
+ line="58"
+ column="39"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public BlurBitmapWorkerTask(final String key, final AlbumScrimImage albumScrimImage,"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/BlurBitmapWorkerTask.java"
+ line="58"
+ column="57"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final ImageType imageType, final Drawable fromDrawable,"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/BlurBitmapWorkerTask.java"
+ line="59"
+ column="39"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final ImageType imageType, final Drawable fromDrawable,"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/BlurBitmapWorkerTask.java"
+ line="59"
+ column="66"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/BlurBitmapWorkerTask.java"
+ line="60"
+ column="39"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected ResultContainer doInBackground(final String... params) {"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/BlurBitmapWorkerTask.java"
+ line="72"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected ResultContainer doInBackground(final String... params) {"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/BlurBitmapWorkerTask.java"
+ line="72"
+ column="52"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected void onPostExecute(ResultContainer resultContainer) {"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/BlurBitmapWorkerTask.java"
+ line="94"
+ column="34"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected final ImageView getAttachedImageView() {"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/BlurBitmapWorkerTask.java"
+ line="115"
+ column="21"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" void onColorExtracted(final BitmapWithColors bitmapWithColors);"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/colors/ColorExtractor.java"
+ line="26"
+ column="37"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void extractColors(final ImageFetcher imageFetcher,"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/colors/ColorExtractor.java"
+ line="29"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final ColorExtractor.Callback callback) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/colors/ColorExtractor.java"
+ line="30"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public ColorPanelView(final Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/ColorPanelView.java"
+ line="56"
+ column="33"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public ColorPanelView(final Context context, final AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/ColorPanelView.java"
+ line="60"
+ column="33"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public ColorPanelView(final Context context, final AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/ColorPanelView.java"
+ line="60"
+ column="56"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public ColorPanelView(final Context context, final AttributeSet attrs, final int defStyle) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/ColorPanelView.java"
+ line="64"
+ column="33"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public ColorPanelView(final Context context, final AttributeSet attrs, final int defStyle) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/ColorPanelView.java"
+ line="64"
+ column="56"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected void onDraw(final Canvas canvas) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/ColorPanelView.java"
+ line="76"
+ column="33"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static SmartPlaylistType getTypeById(long id) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/Config.java"
+ line="84"
+ column="23"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static IdType getTypeById(int id) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/Config.java"
+ line="111"
+ column="23"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void show(Fragment target, int requestCode, int titleId, int okId) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/menu/ConfirmDialog.java"
+ line="47"
+ column="29"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Dialog onCreateDialog(final Bundle savedInstanceState) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/menu/ConfirmDialog.java"
+ line="59"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static CreateNewPlaylist getInstance(final long[] list) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/menu/CreateNewPlaylist.java"
+ line="41"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static CreateNewPlaylist getInstance(final long[] list) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/menu/CreateNewPlaylist.java"
+ line="41"
+ column="55"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void initialize(final Bundle savedInstanceState) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/menu/CreateNewPlaylist.java"
+ line="55"
+ column="34"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void afterTextChanged(Editable editable) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/menu/CreateNewPlaylist.java"
+ line="94"
+ column="34"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" void onDelete(long[] id);"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/menu/DeleteDialog.java"
+ line="43"
+ column="23"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static DeleteDialog newInstance(final String title, final long[] items,"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/menu/DeleteDialog.java"
+ line="68"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static DeleteDialog newInstance(final String title, final long[] items,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/menu/DeleteDialog.java"
+ line="68"
+ column="50"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static DeleteDialog newInstance(final String title, final long[] items,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/menu/DeleteDialog.java"
+ line="68"
+ column="70"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final String key) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/menu/DeleteDialog.java"
+ line="69"
+ column="50"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Dialog onCreateDialog(final Bundle savedInstanceState) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/menu/DeleteDialog.java"
+ line="81"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected PopupMenuHelper mActionMenuHelper;"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/DetailFragment.java"
+ line="29"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected abstract PopupMenuHelper createActionMenuHelper();"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/DetailFragment.java"
+ line="35"
+ column="24"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onCreateOptionsMenu(@NonNull final Menu menu, final MenuInflater inflater) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/DetailFragment.java"
+ line="54"
+ column="69"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public boolean onOptionsItemSelected(final MenuItem item) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/DetailFragment.java"
+ line="68"
+ column="48"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public DetailSongAdapter(final FragmentActivity context) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/DetailSongAdapter.java"
+ line="80"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Song getItem(int pos) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/DetailSongAdapter.java"
+ line="90"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setCurrentlyPlayingTrack(MusicPlaybackTrack currentTrack) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/DetailSongAdapter.java"
+ line="107"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected abstract Config.IdType getSourceType();"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/DetailSongAdapter.java"
+ line="157"
+ column="24"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setData(List<Song> songs) {"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/DetailSongAdapter.java"
+ line="177"
+ column="25"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setPopupMenuClickedListener(IListener listener) {"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/DetailSongAdapter.java"
+ line="209"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected abstract Holder newHolder(View root, ImageFetcher fetcher);"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/DetailSongAdapter.java"
+ line="213"
+ column="24"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected abstract Holder newHolder(View root, ImageFetcher fetcher);"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/DetailSongAdapter.java"
+ line="213"
+ column="41"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected abstract Holder newHolder(View root, ImageFetcher fetcher);"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/DetailSongAdapter.java"
+ line="213"
+ column="52"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static DiskLruCache open(File directory, int appVersion, int valueCount, long maxSize)"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="202"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static DiskLruCache open(File directory, int appVersion, int valueCount, long maxSize)"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="202"
+ column="37"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public synchronized Snapshot get(String key) throws IOException {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="414"
+ column="25"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public synchronized Snapshot get(String key) throws IOException {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="414"
+ column="38"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Editor edit(String key) throws IOException {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="459"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Editor edit(String key) throws IOException {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="459"
+ column="24"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public synchronized boolean remove(String key) throws IOException {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="560"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public InputStream getInputStream(int index) {"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="665"
+ column="16"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public OutputStream newOutputStream(int index) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
+ line="703"
+ column="16"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public DragSortItemTouchHelperCallback(DragSortListener listener) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/DragSortItemTouchHelperCallback.java"
+ line="26"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static boolean isLandscape(final Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/ElevenUtils.java"
+ line="48"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static <T> void execute(final AsyncTask<T, ?, ?> task, final T... args) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/ElevenUtils.java"
+ line="62"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static <T> void execute(final AsyncTask<T, ?, ?> task, final T... args) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/ElevenUtils.java"
+ line="62"
+ column="73"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void showCheatSheet(final View view) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/ElevenUtils.java"
+ line="72"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static ImageFetcher getImageFetcher(final FragmentActivity activity) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/ElevenUtils.java"
+ line="111"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static ImageFetcher getImageFetcher(final FragmentActivity activity) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/ElevenUtils.java"
+ line="111"
+ column="54"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static int getActionBarHeight(Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/ElevenUtils.java"
+ line="122"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public int getColumnIndex(String columnName) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/EmptyCursor.java"
+ line="89"
+ column="31"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public int getColumnIndexOrThrow(String columnName) throws IllegalArgumentException {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/EmptyCursor.java"
+ line="94"
+ column="38"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String getColumnName(int columnIndex) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/EmptyCursor.java"
+ line="99"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String[] getColumnNames() {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/EmptyCursor.java"
+ line="104"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public byte[] getBlob(int columnIndex) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/EmptyCursor.java"
+ line="114"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String getString(int columnIndex) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/EmptyCursor.java"
+ line="119"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void copyStringToBuffer(int columnIndex, CharArrayBuffer buffer) {"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/EmptyCursor.java"
+ line="124"
+ column="53"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void registerContentObserver(ContentObserver observer) {"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/EmptyCursor.java"
+ line="182"
+ column="41"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void unregisterContentObserver(ContentObserver observer) {"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/EmptyCursor.java"
+ line="186"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void registerDataSetObserver(DataSetObserver observer) {"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/EmptyCursor.java"
+ line="190"
+ column="41"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void unregisterDataSetObserver(DataSetObserver observer) {"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/EmptyCursor.java"
+ line="194"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setNotificationUri(ContentResolver cr, Uri uri) {"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/EmptyCursor.java"
+ line="198"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setNotificationUri(ContentResolver cr, Uri uri) {"
+ errorLine2=" ~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/EmptyCursor.java"
+ line="198"
+ column="56"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Uri getNotificationUri() {"
+ errorLine2=" ~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/EmptyCursor.java"
+ line="202"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setExtras(Bundle extras) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/EmptyCursor.java"
+ line="212"
+ column="27"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Bundle getExtras() {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/EmptyCursor.java"
+ line="216"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Bundle respond(Bundle extras) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/EmptyCursor.java"
+ line="221"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Bundle respond(Bundle extras) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/EmptyCursor.java"
+ line="221"
+ column="27"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void fetch(FragmentActivity activity, int songId, TextView textView) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/GenreFetcher.java"
+ line="39"
+ column="30"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void fetch(FragmentActivity activity, int songId, TextView textView) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/GenreFetcher.java"
+ line="39"
+ column="69"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Loader<Cursor> onCreateLoader(int id, Bundle args) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/GenreFetcher.java"
+ line="52"
+ column="50"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onLoadFinished(@NonNull Loader<Cursor> loader, Cursor cursor) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/GenreFetcher.java"
+ line="59"
+ column="64"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public HeaderBar(Context context, AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/HeaderBar.java"
+ line="52"
+ column="22"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public HeaderBar(Context context, AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/HeaderBar.java"
+ line="52"
+ column="39"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setFragment(Fragment activity) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/HeaderBar.java"
+ line="56"
+ column="29"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setHeaderClickListener(final OnClickListener listener) {"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/HeaderBar.java"
+ line="88"
+ column="46"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public boolean onPopupMenuItemClick(final MenuItem item) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/HeaderBar.java"
+ line="117"
+ column="47"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected void onCreate(Bundle savedInstanceState) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/HomeActivity.java"
+ line="100"
+ column="29"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected void init(Bundle savedInstanceState) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/HomeActivity.java"
+ line="112"
+ column="25"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Fragment getTopFragment() {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/HomeActivity.java"
+ line="167"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void postRemoveFragment(final Fragment frag) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/HomeActivity.java"
+ line="171"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected void onNewIntent(Intent intent) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/HomeActivity.java"
+ line="185"
+ column="32"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected void onActivityResult(int requestCode, int resultCode, Intent data) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/HomeActivity.java"
+ line="346"
+ column="70"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void selectNewPhoto(String key) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/HomeActivity.java"
+ line="367"
+ column="32"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public boolean onOptionsItemSelected(final MenuItem item) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/HomeActivity.java"
+ line="376"
+ column="48"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" PagerAdapter.MusicFragments getMusicFragmentParent();"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/IChildFragment.java"
+ line="22"
+ column="5"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" void onPopupMenuClicked(final View v, final int position);"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/IPopupMenuCallback.java"
+ line="23"
+ column="39"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" void setPopupMenuClickedListener(final IListener listener);"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/IPopupMenuCallback.java"
+ line="26"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public ImageCache(final Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="111"
+ column="29"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static ImageCache getInstance(final Context context) {"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="121"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static ImageCache getInstance(final Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="121"
+ column="48"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void initLruCache(final Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="177"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static ImageCache findOrCreateCache(final FragmentActivity activity) {"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="216"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static ImageCache findOrCreateCache(final FragmentActivity activity) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="216"
+ column="54"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static RetainFragment findOrCreateRetainFragment(final FragmentManager fm) {"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="241"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static RetainFragment findOrCreateRetainFragment(final FragmentManager fm) {"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="241"
+ column="67"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void addBitmapToCache(final String data, final Bitmap bitmap) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="259"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void addBitmapToCache(final String data, final Bitmap bitmap) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="259"
+ column="59"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void addBitmapToCache(final String data, final Bitmap bitmap, final boolean replace) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="270"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void addBitmapToCache(final String data, final Bitmap bitmap, final boolean replace) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="270"
+ column="59"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void addBitmapToMemCache(final String data, final Bitmap bitmap) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="315"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void addBitmapToMemCache(final String data, final Bitmap bitmap) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="315"
+ column="62"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void addBitmapToMemCache(final String data, final Bitmap bitmap, final boolean replace) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="326"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void addBitmapToMemCache(final String data, final Bitmap bitmap, final boolean replace) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="326"
+ column="62"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public final Bitmap getBitmapFromMemCache(final String data) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="342"
+ column="18"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public final Bitmap getBitmapFromMemCache(final String data) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="342"
+ column="53"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public final Bitmap getBitmapFromDiskCache(final String data) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="352"
+ column="18"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public final Bitmap getBitmapFromDiskCache(final String data) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="352"
+ column="54"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public final Bitmap getCachedBitmap(final String data) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="393"
+ column="18"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public final Bitmap getCachedBitmap(final String data) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="393"
+ column="47"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public final Bitmap getCachedArtwork(final Context context, final String data, final long id) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="417"
+ column="18"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public final Bitmap getCachedArtwork(final Context context, final String data, final long id) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="417"
+ column="48"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public final Bitmap getCachedArtwork(final Context context, final String data, final long id) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="417"
+ column="71"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public final Bitmap getArtworkFromFile(final Context context, final long albumId) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="439"
+ column="18"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public final Bitmap getArtworkFromFile(final Context context, final long albumId) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="439"
+ column="50"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void removeFromCache(final String key) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="552"
+ column="39"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static File getDiskCacheDir(final Context context, final String uniqueName) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="580"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static File getDiskCacheDir(final Context context, final String uniqueName) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="580"
+ column="46"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static File getDiskCacheDir(final Context context, final String uniqueName) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="580"
+ column="69"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static File getExternalCacheDir(final Context context) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="594"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static File getExternalCacheDir(final Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="594"
+ column="50"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static long getUsableSpace(final File path) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="604"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static String hashKeyForDisk(final String key) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="614"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static String hashKeyForDisk(final String key) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="614"
+ column="47"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onCreate(final Bundle savedInstanceState) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="664"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setObject(final Object object) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="675"
+ column="37"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Object getObject() {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="684"
+ column="16"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static int getBitmapSize(final Bitmap bitmap) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="706"
+ column="47"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected int sizeOf(final String paramString, final Bitmap paramBitmap) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="711"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected int sizeOf(final String paramString, final Bitmap paramBitmap) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageCache.java"
+ line="711"
+ column="62"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public ImageFetcher(final Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageFetcher.java"
+ line="57"
+ column="31"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static ImageFetcher getInstance(final Context context) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageFetcher.java"
+ line="68"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static ImageFetcher getInstance(final Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageFetcher.java"
+ line="68"
+ column="50"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void loadPlaylistArtistImage(final long playlistId, final ImageView imageView) {"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageFetcher.java"
+ line="85"
+ column="70"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void loadPlaylistCoverArtImage(final long playlistId, final ImageView imageView) {"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageFetcher.java"
+ line="95"
+ column="72"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void loadAlbumImage(final String artistName, final String albumName, final long albumId,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageFetcher.java"
+ line="102"
+ column="38"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void loadAlbumImage(final String artistName, final String albumName, final long albumId,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageFetcher.java"
+ line="102"
+ column="63"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final ImageView imageView) {"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageFetcher.java"
+ line="103"
+ column="38"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void loadCurrentArtwork(final ImageView imageView) {"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageFetcher.java"
+ line="111"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void updateScrimImage(final AlbumScrimImage image,"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageFetcher.java"
+ line="116"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final ColorExtractor.Callback callback) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageFetcher.java"
+ line="117"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static String getCurrentCacheKey() {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageFetcher.java"
+ line="142"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void loadArtistImage(final String key, final ImageView imageView) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageFetcher.java"
+ line="149"
+ column="39"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void loadArtistImage(final String key, final ImageView imageView) {"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageFetcher.java"
+ line="149"
+ column="57"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void loadArtistImage(final String key, final ImageView imageView,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageFetcher.java"
+ line="156"
+ column="39"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void loadArtistImage(final String key, final ImageView imageView,"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageFetcher.java"
+ line="156"
+ column="57"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void removeFromCache(final String key) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageFetcher.java"
+ line="176"
+ column="39"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public BitmapWithColors getArtwork(final String albumName, final long albumId,"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageFetcher.java"
+ line="191"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public BitmapWithColors getArtwork(final String albumName, final long albumId,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageFetcher.java"
+ line="191"
+ column="46"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Bitmap getArtworkBitmap(final String albumName, final long albumId) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageFetcher.java"
+ line="203"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Bitmap getArtworkBitmap(final String albumName, final long albumId) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageFetcher.java"
+ line="203"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static String generateAlbumCacheKey(final String albumName, final String artistName) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageFetcher.java"
+ line="225"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static String generateAlbumCacheKey(final String albumName, final String artistName) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageFetcher.java"
+ line="225"
+ column="54"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static String generateAlbumCacheKey(final String albumName, final String artistName) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageFetcher.java"
+ line="225"
+ column="78"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static Bitmap decodeSampledBitmapFromUri(ContentResolver cr, final Uri selectedImage) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageFetcher.java"
+ line="240"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static Bitmap decodeSampledBitmapFromUri(ContentResolver cr, final Uri selectedImage) {"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageFetcher.java"
+ line="240"
+ column="53"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static Bitmap decodeSampledBitmapFromUri(ContentResolver cr, final Uri selectedImage) {"
+ errorLine2=" ~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageFetcher.java"
+ line="240"
+ column="79"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static int calculateInSampleSize(final BitmapFactory.Options options,"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageFetcher.java"
+ line="289"
+ column="51"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static Bitmap scaleBitmapForImageView(Bitmap src, ImageView imageView) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/ImageUtils.java"
+ line="33"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static Bitmap scaleBitmapForImageView(Bitmap src, ImageView imageView) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/ImageUtils.java"
+ line="33"
+ column="50"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static Bitmap scaleBitmapForImageView(Bitmap src, ImageView imageView) {"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/ImageUtils.java"
+ line="33"
+ column="62"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static Bitmap drawableToBitmap(Drawable drawable) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/ImageUtils.java"
+ line="64"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static Bitmap drawableToBitmap(Drawable drawable) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/ImageUtils.java"
+ line="64"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected ImageCache mImageCache;"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="81"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected ImageWorker(final Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="88"
+ column="33"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setImageCache(final ImageCache cacheCallback) {"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="100"
+ column="37"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void addBitmapToCache(final String key, final Bitmap bitmap) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="131"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void addBitmapToCache(final String key, final Bitmap bitmap) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="131"
+ column="58"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Drawable getNewDrawable(ImageType imageType, String name,"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="140"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Drawable getNewDrawable(ImageType imageType, String name,"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="140"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Drawable getNewDrawable(ImageType imageType, String name,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="140"
+ column="57"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" String identifier) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="141"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static Bitmap getBitmapInBackground(final Context context, final ImageCache imageCache,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="148"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static Bitmap getBitmapInBackground(final Context context, final ImageCache imageCache,"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="148"
+ column="54"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static Bitmap getBitmapInBackground(final Context context, final ImageCache imageCache,"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="148"
+ column="77"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final String key, final long albumId,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="149"
+ column="54"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final ImageType imageType) {"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="150"
+ column="54"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static Drawable getTopDrawable(final Drawable drawable) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="182"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static Drawable getTopDrawable(final Drawable drawable) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="182"
+ column="49"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static TransitionDrawable createImageTransitionDrawable(final Resources resources,"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="206"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static TransitionDrawable createImageTransitionDrawable(final Resources resources,"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="206"
+ column="74"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final Drawable fromDrawable,"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="207"
+ column="74"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final Bitmap bitmap,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="208"
+ column="74"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static TransitionDrawable createPaletteTransition(AlbumScrimImage scrimImage,"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="244"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static TransitionDrawable createPaletteTransition(AlbumScrimImage scrimImage,"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="244"
+ column="62"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void cancelWork(final View image) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="267"
+ column="41"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static boolean executePotentialWork(final String key, final View view) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="286"
+ column="54"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static boolean executePotentialWork(final String key, final View view) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="286"
+ column="72"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static AsyncTaskContainer getAsyncTaskContainer(final View view) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="309"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static AsyncTaskContainer getAsyncTaskContainer(final View view) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="309"
+ column="66"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static BitmapWorkerTask getBitmapWorkerTask(final View view) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="329"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static BitmapWorkerTask getBitmapWorkerTask(final View view) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="329"
+ column="62"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public AsyncTaskContainer(final BitmapWorkerTask<?, ?, ?> bitmapWorkerTask) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="355"
+ column="41"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public BitmapWorkerTask<?, ?, ?> getBitmapWorkerTask() {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="363"
+ column="16"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String getKey() {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="367"
+ column="16"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void loadDefaultImage(final ImageView imageView, final ImageType imageType,"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="378"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void loadDefaultImage(final ImageView imageView, final ImageType imageType,"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="378"
+ column="67"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final String name, final String identifier) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="379"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final String name, final String identifier) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="379"
+ column="59"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected void loadImage(final String key,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="403"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final String artistName,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="404"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final String albumName,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="405"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final ImageView imageView,"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="407"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final ImageType imageType) {"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="408"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected void loadImage(final String key, final String artistName, final String albumName,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="424"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected void loadImage(final String key, final String artistName, final String albumName,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="424"
+ column="54"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected void loadImage(final String key, final String artistName, final String albumName,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="424"
+ column="79"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final long albumId, final ImageView imageView,"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="425"
+ column="56"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final ImageType imageType, final boolean scaleImgToView) {"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="426"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void loadPlaylistImage(final long playlistId, final PlaylistWorkerType type,"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="484"
+ column="64"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final ImageView imageView) {"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="485"
+ column="41"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected void loadBlurImage(final String key, final String artistName, final String albumName,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="545"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected void loadBlurImage(final String key, final String artistName, final String albumName,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="545"
+ column="58"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected void loadBlurImage(final String key, final String artistName, final String albumName,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="545"
+ column="83"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final long albumId, final AlbumScrimImage albumScrimImage) {"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/ImageWorker.java"
+ line="546"
+ column="60"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Loader<SectionListContainer<Song>> onCreateLoader(final int id, final Bundle args) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/profile/LastAddedFragment.java"
+ line="51"
+ column="82"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setupNoResultsContainer(NoResultsContainer empty) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/profile/LastAddedFragment.java"
+ line="60"
+ column="41"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public final View onCreateView(LayoutInflater inflater, ViewGroup container,"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/profile/LastAddedFragment.java"
+ line="68"
+ column="18"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public final View onCreateView(LayoutInflater inflater, ViewGroup container,"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/profile/LastAddedFragment.java"
+ line="68"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public final View onCreateView(LayoutInflater inflater, ViewGroup container,"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/profile/LastAddedFragment.java"
+ line="68"
+ column="61"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" Bundle savedInstanceState) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/profile/LastAddedFragment.java"
+ line="69"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected SmartPlaylistType getSmartPlaylistType() {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/profile/LastAddedFragment.java"
+ line="89"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public LastAddedLoader(final Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/LastAddedLoader.java"
+ line="51"
+ column="34"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public List<Song> loadInBackground() {"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/LastAddedLoader.java"
+ line="56"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static Cursor makeLastAddedCursor(final Context context) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/LastAddedLoader.java"
+ line="105"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static Cursor makeLastAddedCursor(final Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/LastAddedLoader.java"
+ line="105"
+ column="52"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public LayoutSuppressingImageView(final Context context, final AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/LayoutSuppressingImageView.java"
+ line="37"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public LayoutSuppressingImageView(final Context context, final AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/LayoutSuppressingImageView.java"
+ line="37"
+ column="68"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public LetterTileDrawable(final Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/LetterTileDrawable.java"
+ line="118"
+ column="37"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void draw(final Canvas canvas) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/LetterTileDrawable.java"
+ line="127"
+ column="28"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setBounds(Rect bounds) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/LetterTileDrawable.java"
+ line="138"
+ column="27"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setColorFilter(final ColorFilter cf) {"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/LetterTileDrawable.java"
+ line="269"
+ column="38"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setTileDetails(final String displayName, final String identifier,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/LetterTileDrawable.java"
+ line="304"
+ column="38"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setTileDetails(final String displayName, final String identifier,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/LetterTileDrawable.java"
+ line="304"
+ column="64"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final ImageType type) {"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/LetterTileDrawable.java"
+ line="305"
+ column="38"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static BitmapWithColors createDefaultBitmap(Context context, String identifier,"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/LetterTileDrawable.java"
+ line="347"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static BitmapWithColors createDefaultBitmap(Context context, String identifier,"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/LetterTileDrawable.java"
+ line="347"
+ column="56"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static BitmapWithColors createDefaultBitmap(Context context, String identifier,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/LetterTileDrawable.java"
+ line="347"
+ column="73"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" ImageType type, boolean isCircle,"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/LetterTileDrawable.java"
+ line="348"
+ column="56"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static <E> ArrayList<E> newArrayList() {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/Lists.java"
+ line="37"
+ column="23"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static <E> LinkedList<E> newLinkedList() {"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/Lists.java"
+ line="49"
+ column="23"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public LoadingEmptyContainer(Context context, AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/LoadingEmptyContainer.java"
+ line="39"
+ column="34"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public LoadingEmptyContainer(Context context, AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/LoadingEmptyContainer.java"
+ line="39"
+ column="51"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public NoResultsContainer getNoResultsContainer() {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/LoadingEmptyContainer.java"
+ line="78"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onReceive(Context context, Intent intent) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/locale/LocaleChangeReceiver.java"
+ line="32"
+ column="27"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onReceive(Context context, Intent intent) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/locale/LocaleChangeReceiver.java"
+ line="32"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static LocaleSet getDefault() {"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/locale/LocaleSet.java"
+ line="80"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public LocaleSet(Locale locale) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/locale/LocaleSet.java"
+ line="84"
+ column="22"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static LocaleSet getLocaleSet(String localeString) {"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/locale/LocaleSet.java"
+ line="99"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static LocaleSet getLocaleSet(String localeString) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/locale/LocaleSet.java"
+ line="99"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public LocaleSet(Locale primaryLocale, Locale secondaryLocale) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/locale/LocaleSet.java"
+ line="123"
+ column="22"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public LocaleSet(Locale primaryLocale, Locale secondaryLocale) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/locale/LocaleSet.java"
+ line="123"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public LocaleSet normalize() {"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/locale/LocaleSet.java"
+ line="130"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Locale getPrimaryLocale() {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/locale/LocaleSet.java"
+ line="154"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Locale getSecondaryLocale() {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/locale/LocaleSet.java"
+ line="158"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public boolean isPrimaryLocale(Locale locale) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/locale/LocaleSet.java"
+ line="162"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public boolean isSecondaryLocale(Locale locale) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/locale/LocaleSet.java"
+ line="166"
+ column="38"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public boolean isPrimaryLanguage(String language) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/locale/LocaleSet.java"
+ line="178"
+ column="38"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public boolean isSecondaryLanguage(String language) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/locale/LocaleSet.java"
+ line="182"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public LocaleSetManager(final Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/locale/LocaleSetManager.java"
+ line="37"
+ column="35"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void updateLocaleSet(LocaleSet localeSet) {"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/locale/LocaleSetManager.java"
+ line="76"
+ column="33"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public LocaleSet getSystemLocaleSet() {"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/locale/LocaleSetManager.java"
+ line="108"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public LocaleSet getStoredLocaleSet() {"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/locale/LocaleSetManager.java"
+ line="116"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected Locale getLocale() {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/locale/LocaleSetManager.java"
+ line="128"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public boolean isLocale(LocaleSet locales) {"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/locale/LocaleUtils.java"
+ line="195"
+ column="29"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static synchronized LocaleUtils getInstance() {"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/locale/LocaleUtils.java"
+ line="199"
+ column="32"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static synchronized void setLocales(LocaleSet locales) {"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/locale/LocaleUtils.java"
+ line="206"
+ column="48"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public int getBucketIndex(String name) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/locale/LocaleUtils.java"
+ line="212"
+ column="31"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String getBucketLabel(int bucketIndex) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/locale/LocaleUtils.java"
+ line="216"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String getLabel(String name) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/locale/LocaleUtils.java"
+ line="220"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String getLabel(String name) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/locale/LocaleUtils.java"
+ line="220"
+ column="28"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public ArrayList<String> getLabels() {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/locale/LocaleUtils.java"
+ line="224"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static synchronized LocalizedStore getInstance(final Context context) {"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/LocalizedStore.java"
+ line="80"
+ column="32"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static synchronized LocalizedStore getInstance(final Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/LocalizedStore.java"
+ line="80"
+ column="65"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onCreate(final SQLiteDatabase db) {"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/LocalizedStore.java"
+ line="108"
+ column="32"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onUpgrade(final SQLiteDatabase db, final int oldVersion) {"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/LocalizedStore.java"
+ line="140"
+ column="33"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onDowngrade(SQLiteDatabase db) {"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/LocalizedStore.java"
+ line="150"
+ column="29"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public SortData getSortOrder(SortParameter itemType, SortParameter sortType,"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/LocalizedStore.java"
+ line="345"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public SortData getSortOrder(SortParameter itemType, SortParameter sortType,"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/LocalizedStore.java"
+ line="345"
+ column="34"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public SortData getSortOrder(SortParameter itemType, SortParameter sortType,"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/LocalizedStore.java"
+ line="345"
+ column="58"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Cursor getLocalizedSort(Cursor cursor, String columnName, SortParameter idType,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/LocalizedStore.java"
+ line="429"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Cursor getLocalizedSort(Cursor cursor, String columnName, SortParameter idType,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/LocalizedStore.java"
+ line="429"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Cursor getLocalizedSort(Cursor cursor, String columnName, SortParameter idType,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/LocalizedStore.java"
+ line="429"
+ column="51"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Cursor getLocalizedSort(Cursor cursor, String columnName, SortParameter idType,"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/LocalizedStore.java"
+ line="429"
+ column="70"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" SortParameter sortType, boolean descending, boolean update) {"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/LocalizedStore.java"
+ line="430"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void logd(String tag, String msg) throws IllegalArgumentException {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/preview/util/Logger.java"
+ line="41"
+ column="29"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void logd(String tag, String msg) throws IllegalArgumentException {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/preview/util/Logger.java"
+ line="41"
+ column="41"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void loge(String tag, String msg) throws IllegalArgumentException {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/preview/util/Logger.java"
+ line="59"
+ column="29"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void loge(String tag, String msg) throws IllegalArgumentException {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/preview/util/Logger.java"
+ line="59"
+ column="41"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onReceive(final Context context, final Intent intent) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MediaButtonIntentReceiver.java"
+ line="46"
+ column="33"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onReceive(final Context context, final Intent intent) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MediaButtonIntentReceiver.java"
+ line="46"
+ column="56"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public LoaderManager getContainingLoaderManager() {"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/phone/MusicBrowserFragment.java"
+ line="31"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected void initLoader(LoaderManager.LoaderCallbacks<?> callback) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/phone/MusicBrowserFragment.java"
+ line="36"
+ column="31"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected void restartLoader(LoaderManager.LoaderCallbacks<?> callback) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/phone/MusicBrowserFragment.java"
+ line="40"
+ column="34"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected String getTitle() {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/phone/MusicBrowserPhoneFragment.java"
+ line="85"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onCreate(final Bundle savedInstanceState) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/phone/MusicBrowserPhoneFragment.java"
+ line="90"
+ column="32"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public boolean onOptionsItemSelected(final MenuItem item) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/phone/MusicBrowserPhoneFragment.java"
+ line="174"
+ column="48"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public ArtistFragment getArtistFragment() {"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/phone/MusicBrowserPhoneFragment.java"
+ line="268"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public AlbumFragment getAlbumFragment() {"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/phone/MusicBrowserPhoneFragment.java"
+ line="276"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public SongFragment getSongFragment() {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/phone/MusicBrowserPhoneFragment.java"
+ line="284"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static synchronized MusicDB getInstance(final Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/MusicDB.java"
+ line="52"
+ column="32"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static synchronized MusicDB getInstance(final Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/MusicDB.java"
+ line="52"
+ column="58"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public MusicDB(final Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/MusicDB.java"
+ line="59"
+ column="26"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onCreate(SQLiteDatabase db) {"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/MusicDB.java"
+ line="65"
+ column="26"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/MusicDB.java"
+ line="75"
+ column="27"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onDowngrade(SQLiteDatabase db, int oldVersion, int newVersion) {"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/MusicDB.java"
+ line="82"
+ column="29"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public MusicHolder(final View view) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/MusicHolder.java"
+ line="96"
+ column="30"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String lineOne;"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/MusicHolder.java"
+ line="140"
+ column="16"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String lineOneRight;"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/MusicHolder.java"
+ line="147"
+ column="16"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String lineTwo;"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/MusicHolder.java"
+ line="154"
+ column="16"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public IBinder onBind(final Intent intent) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="554"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public IBinder onBind(final Intent intent) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="554"
+ column="33"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public boolean onUnbind(final Intent intent) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="561"
+ column="35"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onRebind(final Intent intent) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="586"
+ column="32"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public int onStartCommand(final Intent intent, final int flags, final int startId) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="805"
+ column="37"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public boolean openFile(final String path) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="1768"
+ column="35"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public int[] getQueueHistoryList() {"
+ errorLine2=" ~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="2044"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String getPath() {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="2060"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String getAlbumName() {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="2074"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String getTrackName() {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="2088"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String getGenreName() {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="2102"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String getArtistName() {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="2131"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String getAlbumArtistName() {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="2145"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public MusicPlaybackTrack getCurrentTrack() {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="2197"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public synchronized MusicPlaybackTrack getTrack(int index) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="2207"
+ column="25"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public long[] getQueue() {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="2322"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void open(final long[] list, final int position, long sourceId, IdType sourceType) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="2406"
+ column="28"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void open(final long[] list, final int position, long sourceId, IdType sourceType) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="2406"
+ column="76"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void enqueue(final long[] list, final int action, long sourceId, IdType sourceType) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="2777"
+ column="31"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void enqueue(final long[] list, final int action, long sourceId, IdType sourceType) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="2777"
+ column="77"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public BitmapWithColors getAlbumArt(boolean smallBitmap) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/MusicPlaybackService.java"
+ line="2830"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public MusicPlaybackState(final Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/MusicPlaybackState.java"
+ line="45"
+ column="37"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onCreate(final SQLiteDatabase db) {"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/MusicPlaybackState.java"
+ line="49"
+ column="32"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onUpgrade(final SQLiteDatabase db, final int oldVersion, final int newVersion) {"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/MusicPlaybackState.java"
+ line="80"
+ column="33"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onDowngrade(SQLiteDatabase db) {"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/MusicPlaybackState.java"
+ line="87"
+ column="29"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static synchronized MusicPlaybackState getInstance(final Context context) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/MusicPlaybackState.java"
+ line="98"
+ column="32"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static synchronized MusicPlaybackState getInstance(final Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/MusicPlaybackState.java"
+ line="98"
+ column="69"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public synchronized void saveState(final ArrayList<MusicPlaybackTrack> queue,"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/MusicPlaybackState.java"
+ line="112"
+ column="46"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" LinkedList<Integer> history) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/MusicPlaybackState.java"
+ line="113"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public ArrayList<MusicPlaybackTrack> getQueue() {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/MusicPlaybackState.java"
+ line="168"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public LinkedList<Integer> getHistory(final int playlistSize) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/MusicPlaybackState.java"
+ line="186"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public MusicPlaybackTrack(long id, long sourceId, Config.IdType type, int sourcePosition) {"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/service/MusicPlaybackTrack.java"
+ line="67"
+ column="55"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public MusicPlaybackTrack(Parcel in) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/service/MusicPlaybackTrack.java"
+ line="74"
+ column="31"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void writeToParcel(Parcel dest, int flags) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/service/MusicPlaybackTrack.java"
+ line="87"
+ column="31"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static ServiceToken bindToService(final Context context,"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="113"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static ServiceToken bindToService(final Context context,"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="113"
+ column="52"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final ServiceConnection callback) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="114"
+ column="52"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void unbindFromService(final ServiceToken token) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="129"
+ column="48"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public ServiceBinder(final ServiceConnection callback) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="155"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onServiceConnected(final ComponentName className, final IBinder service) {"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="160"
+ column="46"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onServiceConnected(final ComponentName className, final IBinder service) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="160"
+ column="77"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onServiceDisconnected(final ComponentName className) {"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="168"
+ column="49"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static String makeLabel(final Context context, final int pluralInt,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="224"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static String makeLabel(final Context context, final int pluralInt,"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="224"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static String makeShortTimeString(final Context context, long secs) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="237"
+ column="52"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static String makeLongTimeString(final Context context, long secs) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="257"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static String makeLongTimeString(final Context context, long secs) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="257"
+ column="51"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static String makeCombinedString(final Context context, final String first,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="285"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static String makeCombinedString(final Context context, final String first,"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="285"
+ column="51"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static String makeCombinedString(final Context context, final String first,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="285"
+ column="74"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final String second) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="286"
+ column="51"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void asyncNext(final Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="308"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void previous(final Context context, final boolean force) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="328"
+ column="39"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static String getTrackName() {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="454"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static String getArtistName() {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="469"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static String getAlbumName() {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="484"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static MusicPlaybackTrack getCurrentTrack() {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="529"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static MusicPlaybackTrack getTrack(int index) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="544"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static long[] getQueue() {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="589"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static long[] getSongListForCursor(Cursor cursor) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="715"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static long[] getSongListForCursor(Cursor cursor) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="715"
+ column="47"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static long[] getSongListForArtist(final Context context, final long id) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="744"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static long[] getSongListForArtist(final Context context, final long id) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="744"
+ column="53"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static long[] getSongListForAlbum(final Context context, final long id) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="760"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static long[] getSongListForAlbum(final Context context, final long id) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="760"
+ column="52"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void playArtist(final Context context, final long artistId, int position,"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="776"
+ column="41"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void playAll(final Context context, final long[] list, int position,"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="790"
+ column="38"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void playAll(final Context context, final long[] list, int position,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="790"
+ column="61"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final long sourceId, final IdType sourceType,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="791"
+ column="59"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void playNext(final long[] list, final long sourceId, final IdType sourceType) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="814"
+ column="39"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void playNext(final long[] list, final long sourceId, final IdType sourceType) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="814"
+ column="79"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void shuffleAll(final Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="830"
+ column="41"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static long getIdForPlaylist(final Context context, final String name) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="867"
+ column="47"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static long getIdForPlaylist(final Context context, final String name) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="867"
+ column="70"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static String getNameForPlaylist(final Context context, final long id) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="893"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static String getNameForPlaylist(final Context context, final long id) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="893"
+ column="51"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static long getIdForArtist(final Context context, final String name) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="914"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static long getIdForArtist(final Context context, final String name) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="914"
+ column="68"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void playAlbum(final Context context, final long albumId, int position,"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="938"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void makeInsertItems(final long[] ids, final int offset, int len,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="946"
+ column="46"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static long createPlaylist(final Context context, final String name) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="969"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static long createPlaylist(final Context context, final String name) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="969"
+ column="68"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void clearPlaylist(final Context context, final int playlistId) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="999"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void clearTopTracks(Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="1007"
+ column="39"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void clearRecent(Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="1014"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void clearLastAdded(Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="1021"
+ column="39"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void addToPlaylist(final Context context, final long[] ids,"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="1031"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void addToPlaylist(final Context context, final long[] ids,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="1031"
+ column="67"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void removeFromPlaylist(final Context context, final long id,"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="1065"
+ column="49"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void addToQueue(final Context context, final long[] list, long sourceId,"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="1082"
+ column="41"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void addToQueue(final Context context, final long[] list, long sourceId,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="1082"
+ column="64"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" IdType sourceType) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="1083"
+ column="35"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void setRingtone(final Context context, final long id) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="1101"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static int getSongCountForAlbumInt(final Context context, final long id) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="1135"
+ column="53"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static int getSongCountForPlaylist(final Context context, final long playlistId) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="1164"
+ column="53"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static AlbumArtistDetails getAlbumArtDetails(final Context context, final long trackId) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="1179"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static AlbumArtistDetails getAlbumArtDetails(final Context context, final long trackId) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="1179"
+ column="63"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static String getReleaseDateForAlbum(final Context context, final long id) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="1220"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static String getReleaseDateForAlbum(final Context context, final long id) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="1220"
+ column="55"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static long[] getSongListForPlaylist(final Context context, final long playlistId) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="1258"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static long[] getSongListForPlaylist(final Context context, final long playlistId) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="1258"
+ column="55"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void playPlaylist(final Context context, final long playlistId, boolean shuffle) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="1273"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static long[] getSongListForSmartPlaylist(final Context context,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="1285"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static long[] getSongListForSmartPlaylist(final Context context,"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="1285"
+ column="60"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final SmartPlaylistType type) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="1286"
+ column="60"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static List<String> makePlaylist(final Context context) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="1313"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static List<String> makePlaylist(final Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="1313"
+ column="51"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void deleteTracks(final Context context, final long[] list) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="1464"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void deleteTracks(final Context context, final long[] list) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="1464"
+ column="66"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static String getTrimmedName(String name) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="1547"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static String getTrimmedName(String name) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="1547"
+ column="41"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static String getLocalizedBucketLetter(String name) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="1580"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static String getLocalizedBucketLetter(String name) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="1580"
+ column="51"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static boolean isBlank(String s) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="1597"
+ column="35"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void removeFromCache(FragmentActivity activity, String key) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="1617"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void removeFromCache(FragmentActivity activity, String key) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="1617"
+ column="67"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void selectOldPhoto(FragmentActivity activity, String key) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="1629"
+ column="39"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void selectOldPhoto(FragmentActivity activity, String key) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="1629"
+ column="66"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static boolean isSortOrderDesending(String sortOrder) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="1639"
+ column="48"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static <E> String buildCollectionAsString(Collection<E> items) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="1649"
+ column="23"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static <E> String buildCollectionAsString(Collection<E> items) {"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="1649"
+ column="54"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public int compare(String s1, String s2) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="1665"
+ column="28"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public int compare(String s1, String s2) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/MusicUtils.java"
+ line="1665"
+ column="39"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void openArtistProfile(final Activity context, final String artistName) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/NavUtils.java"
+ line="47"
+ column="48"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void openArtistProfile(final Activity context, final String artistName) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/NavUtils.java"
+ line="47"
+ column="72"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void openAlbumProfile(final Activity context, final String albumName,"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/NavUtils.java"
+ line="69"
+ column="47"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void openAlbumProfile(final Activity context, final String albumName,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/NavUtils.java"
+ line="69"
+ column="71"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final String artistName, final long albumId) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/NavUtils.java"
+ line="70"
+ column="47"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void openSmartPlaylist(final Activity context,"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/NavUtils.java"
+ line="87"
+ column="48"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final Config.SmartPlaylistType type) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/NavUtils.java"
+ line="88"
+ column="48"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void openPlaylist(final Activity context, final long playlistId,"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/NavUtils.java"
+ line="103"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final String playlistName) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/NavUtils.java"
+ line="104"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void openEffectsPanel(final Activity context, final int requestCode) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/NavUtils.java"
+ line="132"
+ column="47"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static boolean hasEffectsPanel(final Activity activity) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/NavUtils.java"
+ line="145"
+ column="49"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void openSettings(final Activity activity) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/NavUtils.java"
+ line="156"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void goHome(final Activity activity, final int browseIndex) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/NavUtils.java"
+ line="166"
+ column="37"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public NoResultsContainer(Context context, AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/NoResultsContainer.java"
+ line="35"
+ column="31"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public NoResultsContainer(Context context, AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/NoResultsContainer.java"
+ line="35"
+ column="48"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public NowPlayingCursor(final Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/NowPlayingCursor.java"
+ line="72"
+ column="35"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String getString(final int column) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/NowPlayingCursor.java"
+ line="100"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String[] getColumnNames() {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/NowPlayingCursor.java"
+ line="155"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public PagerAdapter(final Context context, final FragmentManager fragmentManager) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/PagerAdapter.java"
+ line="59"
+ column="31"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public PagerAdapter(final Context context, final FragmentManager fragmentManager) {"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/PagerAdapter.java"
+ line="59"
+ column="54"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void add(final Class<? extends Fragment> className, final Bundle params) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/PagerAdapter.java"
+ line="72"
+ column="27"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void add(final Class<? extends Fragment> className, final Bundle params) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/PagerAdapter.java"
+ line="72"
+ column="70"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Fragment getFragment(final int position) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/PagerAdapter.java"
+ line="89"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public CharSequence getPageTitle(final int position) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/PagerAdapter.java"
+ line="140"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Class<? extends Fragment> getFragmentClass() {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/PagerAdapter.java"
+ line="182"
+ column="16"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static PhotoSelectionDialog newInstance(final String title, String key) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/menu/PhotoSelectionDialog.java"
+ line="60"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static PhotoSelectionDialog newInstance(final String title, String key) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/menu/PhotoSelectionDialog.java"
+ line="60"
+ column="58"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static PhotoSelectionDialog newInstance(final String title, String key) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/menu/PhotoSelectionDialog.java"
+ line="60"
+ column="72"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Dialog onCreateDialog(final Bundle savedInstanceState) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/menu/PhotoSelectionDialog.java"
+ line="71"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public PlayPauseButton(final Context context, final AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/PlayPauseButton.java"
+ line="51"
+ column="34"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public PlayPauseButton(final Context context, final AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/PlayPauseButton.java"
+ line="51"
+ column="57"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onClick(final View v) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/PlayPauseButton.java"
+ line="61"
+ column="31"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public boolean onLongClick(final View view) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/PlayPauseButton.java"
+ line="67"
+ column="38"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public PlayPauseButtonContainer(Context context, AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/PlayPauseButtonContainer.java"
+ line="28"
+ column="37"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public PlayPauseButtonContainer(Context context, AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/PlayPauseButtonContainer.java"
+ line="28"
+ column="54"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public PlayPauseProgressButton(Context context, AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/PlayPauseProgressButton.java"
+ line="40"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public PlayPauseProgressButton(Context context, AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/PlayPauseProgressButton.java"
+ line="40"
+ column="53"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String mPlaylistName;"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/model/Playlist.java"
+ line="40"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Playlist(final long playlistId, final String playlistName, final int songCount) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/model/Playlist.java"
+ line="53"
+ column="50"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public int compare(Playlist p1, Playlist p2) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/model/Playlist.java"
+ line="93"
+ column="28"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public int compare(Playlist p1, Playlist p2) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/model/Playlist.java"
+ line="93"
+ column="41"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected IListener mListener;"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/PlaylistAdapter.java"
+ line="72"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public PlaylistAdapter(final FragmentActivity activity,"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/PlaylistAdapter.java"
+ line="86"
+ column="34"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final Consumer<Integer> onItemClickListener) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/PlaylistAdapter.java"
+ line="87"
+ column="34"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Playlist getItem(int position) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/PlaylistAdapter.java"
+ line="158"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void add(Playlist playlist) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/PlaylistAdapter.java"
+ line="162"
+ column="21"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setPopupMenuClickedListener(IListener listener) {"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/PlaylistAdapter.java"
+ line="203"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static synchronized PlaylistArtworkStore getInstance(final Context context) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/PlaylistArtworkStore.java"
+ line="42"
+ column="32"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static synchronized PlaylistArtworkStore getInstance(final Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/PlaylistArtworkStore.java"
+ line="42"
+ column="71"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static String getCoverCacheKey(final long playlistId) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/PlaylistArtworkStore.java"
+ line="53"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static String getArtistCacheKey(final long playlistId) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/PlaylistArtworkStore.java"
+ line="61"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public PlaylistArtworkStore(final Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/PlaylistArtworkStore.java"
+ line="70"
+ column="39"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onCreate(final SQLiteDatabase db) {"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/PlaylistArtworkStore.java"
+ line="75"
+ column="32"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onDowngrade(SQLiteDatabase db) {"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/PlaylistArtworkStore.java"
+ line="94"
+ column="29"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected String getTitle() {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/PlaylistDetailFragment.java"
+ line="94"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected PopupMenuHelper createActionMenuHelper() {"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/PlaylistDetailFragment.java"
+ line="116"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onCreate(Bundle savedInstanceState) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/PlaylistDetailFragment.java"
+ line="136"
+ column="26"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Loader<List<Song>> onCreateLoader(int i, Bundle bundle) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/PlaylistDetailFragment.java"
+ line="255"
+ column="53"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onLoadFinished(@NonNull final Loader<List<Song>> loader, final List<Song> data) {"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/PlaylistDetailFragment.java"
+ line="262"
+ column="80"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public PagerAdapter.MusicFragments getMusicFragmentParent() {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/PlaylistDetailFragment.java"
+ line="357"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onCreate(final Bundle savedInstanceState) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/PlaylistFragment.java"
+ line="88"
+ column="32"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public View onCreateView(@NonNull final LayoutInflater inflater, final ViewGroup container,"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/PlaylistFragment.java"
+ line="105"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public View onCreateView(@NonNull final LayoutInflater inflater, final ViewGroup container,"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/PlaylistFragment.java"
+ line="105"
+ column="76"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final Bundle savedInstanceState) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/PlaylistFragment.java"
+ line="106"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Loader<List<Playlist>> onCreateLoader(final int id, final Bundle args) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/PlaylistFragment.java"
+ line="162"
+ column="70"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final List<Playlist> data) {"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/PlaylistFragment.java"
+ line="170"
+ column="38"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public PlaylistLoader(final Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/PlaylistLoader.java"
+ line="53"
+ column="33"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public List<Playlist> loadInBackground() {"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/PlaylistLoader.java"
+ line="58"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static Cursor makePlaylistCursor(final Context context) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/PlaylistLoader.java"
+ line="115"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static Cursor makePlaylistCursor(final Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/PlaylistLoader.java"
+ line="115"
+ column="51"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public PlaylistPopupMenuHelper(Activity activity, FragmentManager fragmentManager,"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/PlaylistPopupMenuHelper.java"
+ line="35"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public PlaylistPopupMenuHelper(Activity activity, FragmentManager fragmentManager,"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/PlaylistPopupMenuHelper.java"
+ line="35"
+ column="55"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" PopupMenuType type) {"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/PlaylistPopupMenuHelper.java"
+ line="36"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public abstract Playlist getPlaylist(int position);"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/PlaylistPopupMenuHelper.java"
+ line="41"
+ column="21"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public PopupMenuType onPreparePopupMenu(int position) {"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/PlaylistPopupMenuHelper.java"
+ line="44"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void updateName(String name) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/PlaylistPopupMenuHelper.java"
+ line="50"
+ column="28"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected Config.IdType getSourceType() {"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/PlaylistPopupMenuHelper.java"
+ line="62"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected long[] getIdList() {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/PlaylistPopupMenuHelper.java"
+ line="67"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public PlaylistSongLoader(final Context context, final long playlistId) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/PlaylistSongLoader.java"
+ line="62"
+ column="37"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public List<Song> loadInBackground() {"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/PlaylistSongLoader.java"
+ line="68"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static Cursor makePlaylistSongCursor(final Context context, final Long playlistID) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/PlaylistSongLoader.java"
+ line="246"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static Cursor makePlaylistSongCursor(final Context context, final Long playlistID) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/PlaylistSongLoader.java"
+ line="246"
+ column="55"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static Cursor makePlaylistSongCursor(final Context context, final Long playlistID) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/PlaylistSongLoader.java"
+ line="246"
+ column="78"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public PlaylistWorkerTask(final String key, final long playlistId,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/PlaylistWorkerTask.java"
+ line="74"
+ column="37"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final PlaylistWorkerType type, final boolean foundInCache,"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/PlaylistWorkerTask.java"
+ line="75"
+ column="37"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final ImageView imageView, final Drawable fromDrawable,"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/PlaylistWorkerTask.java"
+ line="76"
+ column="37"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final ImageView imageView, final Drawable fromDrawable,"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/PlaylistWorkerTask.java"
+ line="76"
+ column="64"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/PlaylistWorkerTask.java"
+ line="77"
+ column="37"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected TransitionDrawable doInBackground(final Void... params) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/PlaylistWorkerTask.java"
+ line="88"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected TransitionDrawable doInBackground(final Void... params) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/PlaylistWorkerTask.java"
+ line="88"
+ column="55"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected Cursor getTopSongsForPlaylist() {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/PlaylistWorkerTask.java"
+ line="172"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected Bitmap loadTopArtist(Cursor sortedCursor) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/PlaylistWorkerTask.java"
+ line="222"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected Bitmap loadTopArtist(Cursor sortedCursor) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/PlaylistWorkerTask.java"
+ line="222"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected Bitmap loadTopSongs(Cursor sortedCursor) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/PlaylistWorkerTask.java"
+ line="268"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected Bitmap loadTopSongs(Cursor sortedCursor) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/PlaylistWorkerTask.java"
+ line="268"
+ column="35"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected void onPostExecute(TransitionDrawable transitionDrawable) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/PlaylistWorkerTask.java"
+ line="361"
+ column="34"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected IListener mClickListener = null;"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/PopupMenuButton.java"
+ line="31"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public PopupMenuButton(Context context, AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/PopupMenuButton.java"
+ line="33"
+ column="28"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public PopupMenuButton(Context context, AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/PopupMenuButton.java"
+ line="33"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setPopupMenuClickedListener(final IListener listener) {"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/PopupMenuButton.java"
+ line="46"
+ column="51"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onClick(View v) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/PopupMenuButton.java"
+ line="51"
+ column="25"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected PopupMenuType mType;"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/PopupMenuHelper.java"
+ line="61"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public PopupMenuHelper(final Activity activity, final FragmentManager fragmentManager) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/PopupMenuHelper.java"
+ line="64"
+ column="34"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public PopupMenuHelper(final Activity activity, final FragmentManager fragmentManager) {"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/PopupMenuHelper.java"
+ line="64"
+ column="59"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void showPopupMenu(final View view, final int position) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/PopupMenuHelper.java"
+ line="76"
+ column="37"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public abstract PopupMenuType onPreparePopupMenu(final int position);"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/PopupMenuHelper.java"
+ line="102"
+ column="21"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected abstract long[] getIdList();"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/PopupMenuHelper.java"
+ line="107"
+ column="24"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected abstract Config.IdType getSourceType();"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/PopupMenuHelper.java"
+ line="111"
+ column="24"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected String getArtistName() {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/PopupMenuHelper.java"
+ line="131"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void createPopupMenu(final Menu menu) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/PopupMenuHelper.java"
+ line="180"
+ column="39"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected void updateMenuIds(PopupMenuType type, TreeSet<Integer> set) {"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/PopupMenuHelper.java"
+ line="272"
+ column="34"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected void updateMenuIds(PopupMenuType type, TreeSet<Integer> set) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/PopupMenuHelper.java"
+ line="272"
+ column="54"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void addToMenu(final Menu menu, final int id, final int resourceId) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/PopupMenuHelper.java"
+ line="337"
+ column="33"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public boolean onMenuItemClick(MenuItem item) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/PopupMenuHelper.java"
+ line="342"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public PreferenceUtils(final Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/PreferenceUtils.java"
+ line="87"
+ column="34"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static PreferenceUtils getInstance(final Context context) {"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/PreferenceUtils.java"
+ line="95"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static PreferenceUtils getInstance(final Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/PreferenceUtils.java"
+ line="95"
+ column="53"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setOnSharedPreferenceChangeListener(OnSharedPreferenceChangeListener listener) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/PreferenceUtils.java"
+ line="117"
+ column="53"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void removeOnSharedPreferenceChangeListener(OnSharedPreferenceChangeListener listener) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/PreferenceUtils.java"
+ line="124"
+ column="56"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setArtistSortOrder(final String value) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/PreferenceUtils.java"
+ line="154"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public final String getArtistSortOrder() {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/PreferenceUtils.java"
+ line="161"
+ column="18"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setAlbumSortOrder(final String value) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/PreferenceUtils.java"
+ line="170"
+ column="41"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public final String getAlbumSortOrder() {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/PreferenceUtils.java"
+ line="177"
+ column="18"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public final String getAlbumSongSortOrder() {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/PreferenceUtils.java"
+ line="185"
+ column="18"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setSongSortOrder(final String value) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/PreferenceUtils.java"
+ line="195"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public final String getSongSortOrder() {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/PreferenceUtils.java"
+ line="202"
+ column="18"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static boolean canRecordAudio(Activity activity) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/PreferenceUtils.java"
+ line="224"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static void requestRecordAudio(Activity activity) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/PreferenceUtils.java"
+ line="229"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public ProfileSongAdapter(final long playlistId, final FragmentActivity context,"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/ProfileSongAdapter.java"
+ line="94"
+ column="60"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final int layoutId, final Consumer<Integer> onItemClickListener) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/ProfileSongAdapter.java"
+ line="95"
+ column="57"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected boolean showNowPlayingIndicator(final Song song) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/ProfileSongAdapter.java"
+ line="113"
+ column="53"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setPopupMenuClickedListener(IPopupMenuCallback.IListener listener) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/ProfileSongAdapter.java"
+ line="174"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setCurrentlyPlayingTrack(MusicPlaybackTrack currentTrack) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/ProfileSongAdapter.java"
+ line="183"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Song getItem(int position) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/ProfileSongAdapter.java"
+ line="205"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setData(List<Song> songs) {"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/ProfileSongAdapter.java"
+ line="209"
+ column="25"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void remove(Song song) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/ProfileSongAdapter.java"
+ line="233"
+ column="24"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static synchronized PropertiesStore getInstance(final Context context) {"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/PropertiesStore.java"
+ line="30"
+ column="32"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static synchronized PropertiesStore getInstance(final Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/PropertiesStore.java"
+ line="30"
+ column="66"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onCreate(final SQLiteDatabase db) {"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/PropertiesStore.java"
+ line="42"
+ column="32"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onUpgrade(final SQLiteDatabase db, final int oldVersion, final int newVersion) {"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/PropertiesStore.java"
+ line="48"
+ column="33"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onDowngrade(SQLiteDatabase db) {"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/PropertiesStore.java"
+ line="55"
+ column="29"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String getProperty(String key) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/PropertiesStore.java"
+ line="61"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String getProperty(String key) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/PropertiesStore.java"
+ line="61"
+ column="31"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String getProperty(String key, String defaultValue) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/PropertiesStore.java"
+ line="65"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String getProperty(String key, String defaultValue) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/PropertiesStore.java"
+ line="65"
+ column="31"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String getProperty(String key, String defaultValue) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/PropertiesStore.java"
+ line="65"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void storeProperty(String key, String value) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/PropertiesStore.java"
+ line="83"
+ column="31"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void storeProperty(String key, String value) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/PropertiesStore.java"
+ line="83"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onCreate(final Bundle savedInstanceState) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/QueueFragment.java"
+ line="117"
+ column="32"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public View onCreateView(final LayoutInflater inflater, final ViewGroup container,"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/QueueFragment.java"
+ line="207"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public View onCreateView(final LayoutInflater inflater, final ViewGroup container,"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/QueueFragment.java"
+ line="207"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public View onCreateView(final LayoutInflater inflater, final ViewGroup container,"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/QueueFragment.java"
+ line="207"
+ column="67"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final Bundle savedInstanceState) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/QueueFragment.java"
+ line="208"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onServiceConnected(final ComponentName name, final IBinder service) {"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/QueueFragment.java"
+ line="228"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onServiceConnected(final ComponentName name, final IBinder service) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/QueueFragment.java"
+ line="228"
+ column="68"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onServiceDisconnected(ComponentName name) {"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/QueueFragment.java"
+ line="233"
+ column="39"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Loader<List<Song>> onCreateLoader(final int id, final Bundle args) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/QueueFragment.java"
+ line="283"
+ column="66"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onLoadFinished(@NonNull final Loader<List<Song>> loader, final List<Song> data) {"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/QueueFragment.java"
+ line="289"
+ column="80"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public QueueLoader(final Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/QueueLoader.java"
+ line="46"
+ column="30"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public List<Song> loadInBackground() {"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/QueueLoader.java"
+ line="51"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static Cursor makeQueueCursor(final Context context) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/QueueLoader.java"
+ line="100"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static Cursor makeQueueCursor(final Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/QueueLoader.java"
+ line="100"
+ column="48"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public QueueSongAdapter(final FragmentActivity context, final int layoutId, final long sourceId,"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/QueueSongAdapter.java"
+ line="90"
+ column="35"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final Config.IdType sourceType,"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/QueueSongAdapter.java"
+ line="91"
+ column="35"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final Consumer<Integer> onItemClickListener) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/QueueSongAdapter.java"
+ line="92"
+ column="35"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected boolean showNowPlayingIndicator(final Song song) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/QueueSongAdapter.java"
+ line="111"
+ column="53"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setCurrentlyPlayingTrack(MusicPlaybackTrack currentTrack) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/QueueSongAdapter.java"
+ line="184"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setPopupMenuClickedListener(IListener listener) {"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/QueueSongAdapter.java"
+ line="207"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Song getItem(int position) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/QueueSongAdapter.java"
+ line="211"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setData(List<Song> song) {"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/QueueSongAdapter.java"
+ line="215"
+ column="25"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected SmartPlaylistType getSmartPlaylistType() {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/RecentFragment.java"
+ line="55"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected void updateMenuIds(TreeSet<Integer> set) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/RecentFragment.java"
+ line="60"
+ column="34"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Loader<SectionListContainer<Song>> onCreateLoader(final int id, final Bundle args) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/RecentFragment.java"
+ line="66"
+ column="82"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setupNoResultsContainer(NoResultsContainer empty) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/RecentFragment.java"
+ line="84"
+ column="41"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public final View onCreateView(LayoutInflater inflater, ViewGroup container,"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/RecentFragment.java"
+ line="92"
+ column="18"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public final View onCreateView(LayoutInflater inflater, ViewGroup container,"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/RecentFragment.java"
+ line="92"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public final View onCreateView(LayoutInflater inflater, ViewGroup container,"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/RecentFragment.java"
+ line="92"
+ column="61"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" Bundle savedInstanceState) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/RecentFragment.java"
+ line="93"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected SongListAdapter createAdapter() {"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/RecentFragment.java"
+ line="114"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public RecentStore(final Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/RecentStore.java"
+ line="38"
+ column="30"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onCreate(final SQLiteDatabase db) {"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/RecentStore.java"
+ line="42"
+ column="32"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onDowngrade(SQLiteDatabase db) {"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/RecentStore.java"
+ line="48"
+ column="29"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static synchronized RecentStore getInstance(final Context context) {"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/RecentStore.java"
+ line="58"
+ column="32"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static synchronized RecentStore getInstance(final Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/RecentStore.java"
+ line="58"
+ column="62"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Cursor queryRecentIds(final String limit) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/RecentStore.java"
+ line="130"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Cursor queryRecentIds(final String limit) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/RecentStore.java"
+ line="130"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static RenamePlaylist getInstance(final Long id) {"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/menu/RenamePlaylist.java"
+ line="49"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static RenamePlaylist getInstance(final Long id) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/menu/RenamePlaylist.java"
+ line="49"
+ column="52"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void initialize(final Bundle savedInstanceState) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/menu/RenamePlaylist.java"
+ line="64"
+ column="34"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void afterTextChanged(Editable editable) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/menu/RenamePlaylist.java"
+ line="105"
+ column="34"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public RepeatButton(final Context context, final AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/RepeatButton.java"
+ line="35"
+ column="31"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public RepeatButton(final Context context, final AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/RepeatButton.java"
+ line="35"
+ column="54"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onClick(final View v) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/RepeatButton.java"
+ line="40"
+ column="31"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public RepeatingImageButton(final Context context, final AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/RepeatingImageButton.java"
+ line="53"
+ column="39"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public RepeatingImageButton(final Context context, final AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/RepeatingImageButton.java"
+ line="53"
+ column="62"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onClick(final View view) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/RepeatingImageButton.java"
+ line="64"
+ column="31"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setRepeatListener(final RepeatListener l) {"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/RepeatingImageButton.java"
+ line="79"
+ column="41"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public boolean onTouchEvent(final MotionEvent event) {"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/RepeatingImageButton.java"
+ line="95"
+ column="39"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public boolean onKeyDown(final int keyCode, final KeyEvent event) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/RepeatingImageButton.java"
+ line="108"
+ column="55"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public boolean onKeyUp(final int keyCode, final KeyEvent event) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/RepeatingImageButton.java"
+ line="123"
+ column="53"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" void onRepeat(View v, long duration, int repeatCount);"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/RepeatingImageButton.java"
+ line="178"
+ column="23"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public SimpleListLoader(Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/sectionadapter/SectionCreator.java"
+ line="44"
+ column="33"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public SectionCreator(Context context, SimpleListLoader<T> loader,"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/sectionadapter/SectionCreator.java"
+ line="66"
+ column="27"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public SectionCreator(Context context, SimpleListLoader<T> loader,"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/sectionadapter/SectionCreator.java"
+ line="66"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" SectionCreatorUtils.IItemCompare<T> comparator) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/sectionadapter/SectionCreator.java"
+ line="67"
+ column="27"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public SectionListContainer<T> loadInBackground() {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/sectionadapter/SectionCreator.java"
+ line="74"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Section(final SectionType type, final String identifier) {"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
+ line="43"
+ column="30"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Section(final SectionType type, final String identifier) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
+ line="43"
+ column="54"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String createSectionHeader(T first, T second, List<T> items, int firstIndex) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
+ line="67"
+ column="16"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String createSectionHeader(T first, T second, List<T> items, int firstIndex) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
+ line="67"
+ column="62"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String createSectionHeader(T first, T second) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
+ line="71"
+ column="16"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String createSectionFooter(T first, T second, List<T> items, int firstIndex) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
+ line="86"
+ column="16"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String createSectionFooter(T first, T second, List<T> items, int firstIndex) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
+ line="86"
+ column="62"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String createSectionFooter(T first, T second) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
+ line="90"
+ column="16"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String createHeaderLabel(T item) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
+ line="100"
+ column="16"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String createFooterLabel(T item) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
+ line="110"
+ column="16"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public LocalizedCompare(Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
+ line="130"
+ column="33"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String createSectionHeader(T first, T second) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
+ line="136"
+ column="16"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String createHeaderLabel(T item) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
+ line="153"
+ column="16"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected String createHeaderLabel(final String label) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
+ line="158"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected String createHeaderLabel(final String label) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
+ line="158"
+ column="50"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public abstract String getString(T item);"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
+ line="165"
+ column="25"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String createSectionHeader(T first, T second) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
+ line="180"
+ column="16"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String createHeaderLabel(T item) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
+ line="189"
+ column="16"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public BoundedIntCompare(Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
+ line="206"
+ column="34"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String createSectionHeader(T first, T second) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
+ line="213"
+ column="16"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected String createLabel(int stringId, T item) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
+ line="222"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String createHeaderLabel(T item) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
+ line="227"
+ column="16"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public DurationCompare(Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
+ line="240"
+ column="32"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public NumberOfSongsCompare(Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
+ line="276"
+ column="37"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public NumberOfAlbumsCompare(Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
+ line="300"
+ column="38"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String createSectionHeader(T first, T second) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
+ line="314"
+ column="16"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected String createLabel(int stringId, T item) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
+ line="337"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static <T> TreeMap<Integer, Section> createSections(final List<T> list,"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
+ line="355"
+ column="23"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static <T> TreeMap<Integer, Section> createSections(final List<T> list,"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
+ line="355"
+ column="70"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final IItemCompare<T> comparator) {"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
+ line="356"
+ column="70"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static IItemCompare<Artist> createArtistComparison(final Context context) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
+ line="398"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static IItemCompare<Artist> createArtistComparison(final Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
+ line="398"
+ column="69"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static IItemCompare<Song> createSongComparison(final Context context) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
+ line="448"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static IItemCompare<Song> createSongComparison(final Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
+ line="448"
+ column="65"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public SectionListContainer(final TreeMap<Integer, SectionCreatorUtils.Section> sections,"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/sectionadapter/SectionListContainer.java"
+ line="33"
+ column="39"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final List<T> results) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/sectionadapter/SectionListContainer.java"
+ line="34"
+ column="39"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public SectionSeparatorItemDecoration(Context context,"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/SectionSeparatorItemDecoration.java"
+ line="49"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" TreeMap<Integer, SectionCreatorUtils.Section> items) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/SectionSeparatorItemDecoration.java"
+ line="50"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected void onCreate(final Bundle savedInstanceState) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/SettingsActivity.java"
+ line="52"
+ column="35"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public boolean onOptionsItemSelected(final MenuItem item) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/SettingsActivity.java"
+ line="65"
+ column="48"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onCreate(final Bundle savedInstanceState) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/SettingsActivity.java"
+ line="85"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onCreatePreferences(Bundle bundle, String rootKey) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/SettingsActivity.java"
+ line="125"
+ column="41"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onCreatePreferences(Bundle bundle, String rootKey) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/SettingsActivity.java"
+ line="125"
+ column="56"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onServiceConnected(final ComponentName name, final IBinder service) {"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/SettingsActivity.java"
+ line="147"
+ column="46"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onServiceConnected(final ComponentName name, final IBinder service) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/SettingsActivity.java"
+ line="147"
+ column="72"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onServiceDisconnected(ComponentName name) {"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/SettingsActivity.java"
+ line="152"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onSharedPreferenceChanged(SharedPreferences sharedPreferences, String key) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/SettingsActivity.java"
+ line="157"
+ column="47"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onSharedPreferenceChanged(SharedPreferences sharedPreferences, String key) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/SettingsActivity.java"
+ line="157"
+ column="84"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public ShakeDetector(Listener listener) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/ShakeDetector.java"
+ line="61"
+ column="26"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public boolean start(SensorManager sensorManager) {"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/ShakeDetector.java"
+ line="71"
+ column="26"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onSensorChanged(SensorEvent event) {"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/ShakeDetector.java"
+ line="102"
+ column="33"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onAccuracyChanged(Sensor sensor, int accuracy) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/ShakeDetector.java"
+ line="289"
+ column="35"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public ShuffleButton(final Context context, final AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/ShuffleButton.java"
+ line="31"
+ column="32"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public ShuffleButton(final Context context, final AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/ShuffleButton.java"
+ line="31"
+ column="55"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onClick(final View v) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/ShuffleButton.java"
+ line="36"
+ column="31"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public SimpleBitmapWorkerTask(final String key, final ImageView imageView,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/SimpleBitmapWorkerTask.java"
+ line="42"
+ column="41"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public SimpleBitmapWorkerTask(final String key, final ImageView imageView,"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/SimpleBitmapWorkerTask.java"
+ line="42"
+ column="59"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final ImageType imageType, final Drawable fromDrawable,"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/SimpleBitmapWorkerTask.java"
+ line="43"
+ column="41"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final ImageType imageType, final Drawable fromDrawable,"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/SimpleBitmapWorkerTask.java"
+ line="43"
+ column="68"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final Context context, final boolean scaleImgToView) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/SimpleBitmapWorkerTask.java"
+ line="44"
+ column="41"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected TransitionDrawable doInBackground(final String... params) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/SimpleBitmapWorkerTask.java"
+ line="49"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected TransitionDrawable doInBackground(final String... params) {"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/SimpleBitmapWorkerTask.java"
+ line="49"
+ column="55"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected void onPostExecute(TransitionDrawable transitionDrawable) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/cache/SimpleBitmapWorkerTask.java"
+ line="65"
+ column="34"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected Panel mTargetNavigatePanel;"
+ errorLine2=" ~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/SlidingPanelActivity.java"
+ line="61"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected void init(final Bundle savedInstanceState) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/SlidingPanelActivity.java"
+ line="93"
+ column="31"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void showPanel(Panel panel) {"
+ errorLine2=" ~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/SlidingPanelActivity.java"
+ line="218"
+ column="27"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Panel getCurrentPanel() {"
+ errorLine2=" ~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/SlidingPanelActivity.java"
+ line="261"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected AudioPlayerFragment getAudioPlayerFragment() {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/SlidingPanelActivity.java"
+ line="292"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected QueueFragment getQueueFragment() {"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/SlidingPanelActivity.java"
+ line="297"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected void setupQueueHeaderBar(final View.OnClickListener headerClickListener) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/activities/SlidingPanelActivity.java"
+ line="316"
+ column="46"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" void onPanelSlide(View panel, float slideOffset);"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="242"
+ column="27"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" void onPanelCollapsed(View panel);"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="249"
+ column="31"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" void onPanelExpanded(View panel);"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="256"
+ column="30"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" void onPanelAnchored(View panel);"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="264"
+ column="30"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" void onPanelHidden(View panel);"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="272"
+ column="28"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onPanelSlide(View panel, float slideOffset) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="281"
+ column="34"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onPanelCollapsed(View panel) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="285"
+ column="38"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onPanelExpanded(View panel) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="289"
+ column="37"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onPanelAnchored(View panel) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="293"
+ column="37"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onPanelHidden(View panel) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="297"
+ column="35"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public SlidingUpPanelLayout(Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="301"
+ column="33"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public SlidingUpPanelLayout(Context context, AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="305"
+ column="33"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public SlidingUpPanelLayout(Context context, AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="305"
+ column="50"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public SlidingUpPanelLayout(Context context, AttributeSet attrs, int defStyle) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="309"
+ column="33"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public SlidingUpPanelLayout(Context context, AttributeSet attrs, int defStyle) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="309"
+ column="50"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setPanelSlideListener(PanelSlideListener listener) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="442"
+ column="39"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setDragView(View dragView) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="451"
+ column="29"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public boolean onInterceptTouchEvent(MotionEvent ev) {"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="732"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public boolean onTouchEvent(MotionEvent ev) {"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="776"
+ column="33"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected boolean drawChild(Canvas canvas, View child, long drawingTime) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="908"
+ column="33"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected boolean drawChild(Canvas canvas, View child, long drawingTime) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="908"
+ column="48"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void draw(Canvas c) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="970"
+ column="22"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected ViewGroup.LayoutParams generateDefaultLayoutParams() {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="997"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected ViewGroup.LayoutParams generateLayoutParams(ViewGroup.LayoutParams p) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1002"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected ViewGroup.LayoutParams generateLayoutParams(ViewGroup.LayoutParams p) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1002"
+ column="59"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected boolean checkLayoutParams(ViewGroup.LayoutParams p) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1009"
+ column="41"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public ViewGroup.LayoutParams generateLayoutParams(AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1014"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public ViewGroup.LayoutParams generateLayoutParams(AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1014"
+ column="56"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Parcelable onSaveInstanceState() {"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1019"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onRestoreInstanceState(Parcelable state) {"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1029"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public LayoutParams(android.view.ViewGroup.LayoutParams source) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1147"
+ column="29"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public LayoutParams(MarginLayoutParams source) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1151"
+ column="29"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public LayoutParams(Context c, AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1155"
+ column="29"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public LayoutParams(Context c, AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
+ line="1155"
+ column="40"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public View onCreateView(LayoutInflater inflater, ViewGroup container,"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/profile/SmartPlaylistFragment.java"
+ line="56"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public View onCreateView(LayoutInflater inflater, ViewGroup container,"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/profile/SmartPlaylistFragment.java"
+ line="56"
+ column="30"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public View onCreateView(LayoutInflater inflater, ViewGroup container,"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/profile/SmartPlaylistFragment.java"
+ line="56"
+ column="55"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" Bundle savedInstanceState) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/profile/SmartPlaylistFragment.java"
+ line="57"
+ column="30"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected Config.IdType getFragmentSourceType() {"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/profile/SmartPlaylistFragment.java"
+ line="63"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onCreateOptionsMenu(@NonNull final Menu menu, final MenuInflater inflater) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/profile/SmartPlaylistFragment.java"
+ line="68"
+ column="69"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public boolean onOptionsItemSelected(final MenuItem item) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/profile/SmartPlaylistFragment.java"
+ line="89"
+ column="48"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public PagerAdapter.MusicFragments getMusicFragmentParent() {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/profile/SmartPlaylistFragment.java"
+ line="130"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected abstract SmartPlaylistType getSmartPlaylistType();"
+ errorLine2=" ~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/profile/SmartPlaylistFragment.java"
+ line="139"
+ column="24"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String mBucketLabel;"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/model/Song.java"
+ line="70"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Song(final long songId, final String songName, final String artistName,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/model/Song.java"
+ line="82"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Song(final long songId, final String songName, final String artistName,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/model/Song.java"
+ line="82"
+ column="65"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final String albumName, final long albumId, final int duration, final int year) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/model/Song.java"
+ line="83"
+ column="23"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Loader<SectionListContainer<Song>> onCreateLoader(final int id, final Bundle args) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/SongFragment.java"
+ line="54"
+ column="82"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public LoaderManager getFragmentLoaderManager() {"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/SongFragment.java"
+ line="79"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public SongListAdapter(final FragmentActivity context, final int layoutId, final long sourceId,"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/SongListAdapter.java"
+ line="94"
+ column="34"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final Config.IdType sourceType,"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/SongListAdapter.java"
+ line="95"
+ column="34"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final Consumer<Integer> onItemClickListener) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/SongListAdapter.java"
+ line="96"
+ column="34"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected boolean showNowPlayingIndicator(final Song song, final int position) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/SongListAdapter.java"
+ line="116"
+ column="53"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setPopupMenuClickedListener(IListener listener) {"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/SongListAdapter.java"
+ line="214"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setCurrentlyPlayingTrack(MusicPlaybackTrack currentTrack) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/SongListAdapter.java"
+ line="223"
+ column="42"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public long[] getSongIds() {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/SongListAdapter.java"
+ line="248"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Song getItem(int position) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/SongListAdapter.java"
+ line="257"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setData(List<Song> songs) {"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/adapters/SongListAdapter.java"
+ line="261"
+ column="25"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public SongLoader(final Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/SongLoader.java"
+ line="59"
+ column="29"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public SongLoader(final Context context, final String selection) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/SongLoader.java"
+ line="67"
+ column="29"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public SongLoader(final Context context, final String selection) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/SongLoader.java"
+ line="67"
+ column="52"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public List<Song> loadInBackground() {"
+ errorLine2=" ~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/SongLoader.java"
+ line="74"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected Cursor getCursor() {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/SongLoader.java"
+ line="129"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static Cursor makeSongCursor(final Context context, final String selection) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/SongLoader.java"
+ line="159"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static Cursor makeSongCursor(final Context context, final String selection) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/SongLoader.java"
+ line="159"
+ column="47"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static Cursor makeSongCursor(final Context context, final String selection) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/SongLoader.java"
+ line="159"
+ column="70"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static Cursor makeSongCursor(final Context context, final String selection,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/SongLoader.java"
+ line="173"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static Cursor makeSongCursor(final Context context, final String selection,"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/SongLoader.java"
+ line="173"
+ column="47"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static Cursor makeSongCursor(final Context context, final String selection,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/SongLoader.java"
+ line="173"
+ column="70"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public SongPlayCount(final Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/SongPlayCount.java"
+ line="64"
+ column="32"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onCreate(final SQLiteDatabase db) {"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/SongPlayCount.java"
+ line="71"
+ column="32"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onDowngrade(SQLiteDatabase db) {"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/SongPlayCount.java"
+ line="96"
+ column="29"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static synchronized SongPlayCount getInstance(final Context context) {"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/SongPlayCount.java"
+ line="106"
+ column="32"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static synchronized SongPlayCount getInstance(final Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/SongPlayCount.java"
+ line="106"
+ column="64"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Cursor getTopPlayedResults(int numResults) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/SongPlayCount.java"
+ line="267"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public long[] getTopPlayedResultsForList(long[] ids) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/SongPlayCount.java"
+ line="283"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public long[] getTopPlayedResultsForList(long[] ids) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/provider/SongPlayCount.java"
+ line="283"
+ column="46"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected Song mSong;"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SongPopupMenuHelper.java"
+ line="31"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public SongPopupMenuHelper(Activity activity, FragmentManager fragmentManager) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SongPopupMenuHelper.java"
+ line="33"
+ column="32"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public SongPopupMenuHelper(Activity activity, FragmentManager fragmentManager) {"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SongPopupMenuHelper.java"
+ line="33"
+ column="51"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public abstract Song getSong(int position);"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SongPopupMenuHelper.java"
+ line="37"
+ column="21"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public PopupMenuHelper.PopupMenuType onPreparePopupMenu(int position) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SongPopupMenuHelper.java"
+ line="40"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected long[] getIdList() {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SongPopupMenuHelper.java"
+ line="56"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected String getArtistName() {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SongPopupMenuHelper.java"
+ line="61"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected void updateMenuIds(PopupMenuType type, TreeSet<Integer> set) {"
+ errorLine2=" ~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SongPopupMenuHelper.java"
+ line="72"
+ column="34"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected void updateMenuIds(PopupMenuType type, TreeSet<Integer> set) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SongPopupMenuHelper.java"
+ line="72"
+ column="54"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public SortedCursor(final Cursor cursor, final long[] order, final String columnName,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/SortedCursor.java"
+ line="49"
+ column="31"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public SortedCursor(final Cursor cursor, final long[] order, final String columnName,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/SortedCursor.java"
+ line="49"
+ column="52"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public SortedCursor(final Cursor cursor, final long[] order, final String columnName,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/SortedCursor.java"
+ line="49"
+ column="72"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final List<?> extraData) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/SortedCursor.java"
+ line="50"
+ column="31"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public ArrayList<Long> getMissingIds() {"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/SortedCursor.java"
+ line="108"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Collection<Long> getExtraIds() {"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/SortedCursor.java"
+ line="115"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Object getExtraData() {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/SortedCursor.java"
+ line="122"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String[] getColumnNames() {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/SortedCursor.java"
+ line="140"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public String getString(int column) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/SortedCursor.java"
+ line="145"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public SquareFrame(Context context, AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/SquareFrame.java"
+ line="22"
+ column="24"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public SquareFrame(Context context, AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/SquareFrame.java"
+ line="22"
+ column="41"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public SquareImageView(final Context context, final AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/SquareImageView.java"
+ line="35"
+ column="34"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public SquareImageView(final Context context, final AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/SquareImageView.java"
+ line="35"
+ column="57"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public SquareView(final Context context, final AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/SquareView.java"
+ line="38"
+ column="29"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public SquareView(final Context context, final AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/SquareView.java"
+ line="38"
+ column="52"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public SquareViewPager(Context context, AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/SquareViewPager.java"
+ line="33"
+ column="28"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public SquareViewPager(Context context, AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/SquareViewPager.java"
+ line="33"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public synchronized void initialize(final MediaPlayer player, final File f) {"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SrtManager.java"
+ line="74"
+ column="47"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public synchronized void initialize(final MediaPlayer player, final File f) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SrtManager.java"
+ line="74"
+ column="73"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public boolean handleMessage(Message msg) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SrtManager.java"
+ line="194"
+ column="34"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public abstract void onTimedText(String txt);"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SrtManager.java"
+ line="207"
+ column="38"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static ArrayList<SrtEntry> getSrtEntries(File f) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SrtParser.java"
+ line="49"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static ArrayList<SrtEntry> getSrtEntries(File f) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/utils/SrtParser.java"
+ line="49"
+ column="53"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected SmartPlaylistType getSmartPlaylistType() {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/profile/TopTracksFragment.java"
+ line="55"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public Loader<SectionListContainer<Song>> onCreateLoader(final int id, final Bundle args) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/profile/TopTracksFragment.java"
+ line="61"
+ column="82"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected SongListAdapter createAdapter() {"
+ errorLine2=" ~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/profile/TopTracksFragment.java"
+ line="71"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public final View onCreateView(LayoutInflater inflater, ViewGroup container,"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/profile/TopTracksFragment.java"
+ line="80"
+ column="18"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public final View onCreateView(LayoutInflater inflater, ViewGroup container,"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/profile/TopTracksFragment.java"
+ line="80"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public final View onCreateView(LayoutInflater inflater, ViewGroup container,"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/profile/TopTracksFragment.java"
+ line="80"
+ column="61"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" Bundle savedInstanceState) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/profile/TopTracksFragment.java"
+ line="81"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public TopTracksAdapter(final FragmentActivity context, final int layoutId,"
+ errorLine2=" ~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/profile/TopTracksFragment.java"
+ line="96"
+ column="39"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" final Consumer<Integer> onItemClickListener) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/profile/TopTracksFragment.java"
+ line="97"
+ column="39"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setupNoResultsContainer(NoResultsContainer empty) {"
+ errorLine2=" ~~~~~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/ui/fragments/profile/TopTracksFragment.java"
+ line="110"
+ column="41"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public TopTracksLoader(final Context context, QueryType type) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/TopTracksLoader.java"
+ line="44"
+ column="34"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public TopTracksLoader(final Context context, QueryType type) {"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/TopTracksLoader.java"
+ line="44"
+ column="51"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected Cursor getCursor() {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/TopTracksLoader.java"
+ line="51"
+ column="15"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static SortedCursor makeTopTracksCursor(final Context context) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/TopTracksLoader.java"
+ line="85"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static SortedCursor makeTopTracksCursor(final Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/TopTracksLoader.java"
+ line="85"
+ column="58"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static SortedCursor makeRecentTracksCursor(final Context context) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/TopTracksLoader.java"
+ line="101"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static SortedCursor makeRecentTracksCursor(final Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/TopTracksLoader.java"
+ line="101"
+ column="61"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static SortedCursor makeSortedCursor(final Context context, final Cursor cursor,"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/TopTracksLoader.java"
+ line="118"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static SortedCursor makeSortedCursor(final Context context, final Cursor cursor,"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/TopTracksLoader.java"
+ line="118"
+ column="55"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static SortedCursor makeSortedCursor(final Context context, final Cursor cursor,"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/TopTracksLoader.java"
+ line="118"
+ column="78"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onViewPositionChanged(View changedView, int left, int top, int dx, int dy) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
+ line="147"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onViewCaptured(View capturedChild, int activePointerId) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
+ line="159"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void onViewReleased(View releasedChild, float xVel, float yVel) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
+ line="182"
+ column="36"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public int getViewHorizontalDragRange(View child) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
+ line="247"
+ column="47"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public int getViewVerticalDragRange(View child) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
+ line="258"
+ column="45"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public abstract boolean tryCaptureView(View child, int pointerId);"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
+ line="278"
+ column="48"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public int clampViewPositionHorizontal(View child, int left, int dx) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
+ line="291"
+ column="48"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public int clampViewPositionVertical(View child, int top, int dy) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
+ line="305"
+ column="46"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static ViewDragHelper create(ViewGroup forParent, Callback cb) {"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
+ line="327"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static ViewDragHelper create(ViewGroup forParent, Callback cb) {"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
+ line="327"
+ column="41"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static ViewDragHelper create(ViewGroup forParent, Callback cb) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
+ line="327"
+ column="62"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static ViewDragHelper create(ViewGroup forParent, float sensitivity, Callback cb) {"
+ errorLine2=" ~~~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
+ line="340"
+ column="19"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static ViewDragHelper create(ViewGroup forParent, float sensitivity, Callback cb) {"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
+ line="340"
+ column="41"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public static ViewDragHelper create(ViewGroup forParent, float sensitivity, Callback cb) {"
+ errorLine2=" ~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
+ line="340"
+ column="81"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void captureChildView(View childView, int activePointerId) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
+ line="403"
+ column="34"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public boolean smoothSlideViewTo(View child, int finalLeft, int finalTop) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
+ line="467"
+ column="38"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public boolean shouldInterceptTouchEvent(MotionEvent ev) {"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
+ line="785"
+ column="46"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void processTouchEvent(MotionEvent ev) {"
+ errorLine2=" ~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
+ line="895"
+ column="35"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public boolean isViewUnder(View view, int x, int y) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
+ line="1164"
+ column="32"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public View findTopChildUnder(int x, int y) {"
+ errorLine2=" ~~~~">
+ <location
+ file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
+ line="1182"
+ column="12"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public ViewPagerTabStrip(Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/ViewPagerTabStrip.java"
+ line="38"
+ column="30"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public ViewPagerTabStrip(Context context, AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/ViewPagerTabStrip.java"
+ line="42"
+ column="30"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public ViewPagerTabStrip(Context context, AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/ViewPagerTabStrip.java"
+ line="42"
+ column="47"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected void onDraw(Canvas canvas) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/ViewPagerTabStrip.java"
+ line="71"
+ column="27"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public ViewPagerTabs(Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/ViewPagerTabs.java"
+ line="115"
+ column="26"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public ViewPagerTabs(Context context, AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/ViewPagerTabs.java"
+ line="119"
+ column="26"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public ViewPagerTabs(Context context, AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/ViewPagerTabs.java"
+ line="119"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public ViewPagerTabs(Context context, AttributeSet attrs, int defStyle) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/ViewPagerTabs.java"
+ line="123"
+ column="26"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public ViewPagerTabs(Context context, AttributeSet attrs, int defStyle) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/ViewPagerTabs.java"
+ line="123"
+ column="43"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void setViewPager(ViewPager viewPager) {"
+ errorLine2=" ~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/ViewPagerTabs.java"
+ line="144"
+ column="30"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public VisualizerView(Context context, AttributeSet attrs, int defStyle) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/VisualizerView.java"
+ line="124"
+ column="27"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public VisualizerView(Context context, AttributeSet attrs, int defStyle) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/VisualizerView.java"
+ line="124"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public VisualizerView(Context context, AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/VisualizerView.java"
+ line="128"
+ column="27"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public VisualizerView(Context context, AttributeSet attrs) {"
+ errorLine2=" ~~~~~~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/VisualizerView.java"
+ line="128"
+ column="44"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public VisualizerView(Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/VisualizerView.java"
+ line="132"
+ column="27"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" protected void onDraw(Canvas canvas) {"
+ errorLine2=" ~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/VisualizerView.java"
+ line="161"
+ column="27"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public void initialize(Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/widgets/VisualizerView.java"
+ line="169"
+ column="28"/>
+ </issue>
+
+ <issue
+ id="UnknownNullness"
+ message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
+ errorLine1=" public WrappedAsyncTaskLoader(Context context) {"
+ errorLine2=" ~~~~~~~">
+ <location
+ file="src/org/lineageos/eleven/loaders/WrappedAsyncTaskLoader.java"
+ line="38"
+ column="35"/>
+ </issue>
+
+</issues>