Removed UnsafeOptInUsageError annotation after media3 library update

This commit is contained in:
antonio 2022-12-28 14:29:09 +01:00
parent ff8bf4f6bf
commit 490cce53e5
20 changed files with 14 additions and 53 deletions

View file

@ -40,7 +40,6 @@ public final class DownloadUtil {
private static DownloaderManager downloaderManager;
private static DownloadNotificationHelper downloadNotificationHelper;
@SuppressLint("UnsafeOptInUsageError")
public static synchronized HttpDataSource.Factory getHttpDataSourceFactory() {
if (httpDataSourceFactory == null) {
CookieManager cookieManager = new CookieManager();
@ -52,7 +51,6 @@ public final class DownloadUtil {
return httpDataSourceFactory;
}
@SuppressLint("UnsafeOptInUsageError")
public static synchronized DataSource.Factory getDataSourceFactory(Context context) {
if (dataSourceFactory == null) {
context = context.getApplicationContext();
@ -63,7 +61,6 @@ public final class DownloadUtil {
return dataSourceFactory;
}
@SuppressLint("UnsafeOptInUsageError")
public static synchronized DownloadNotificationHelper getDownloadNotificationHelper(Context context) {
if (downloadNotificationHelper == null) {
downloadNotificationHelper = new DownloadNotificationHelper(context, DOWNLOAD_NOTIFICATION_CHANNEL_ID);
@ -82,7 +79,6 @@ public final class DownloadUtil {
return downloaderManager;
}
@SuppressLint("UnsafeOptInUsageError")
private static synchronized Cache getDownloadCache(Context context) {
if (downloadCache == null) {
File downloadContentDirectory = new File(getDownloadDirectory(context), DOWNLOAD_CONTENT_DIRECTORY);
@ -92,7 +88,6 @@ public final class DownloadUtil {
return downloadCache;
}
@SuppressLint("UnsafeOptInUsageError")
private static synchronized void ensureDownloadManagerInitialized(Context context) {
if (downloadManager == null) {
downloadManager =
@ -107,7 +102,6 @@ public final class DownloadUtil {
}
}
@SuppressLint("UnsafeOptInUsageError")
private static synchronized DatabaseProvider getDatabaseProvider(Context context) {
if (databaseProvider == null) {
databaseProvider = new StandaloneDatabaseProvider(context);
@ -127,7 +121,6 @@ public final class DownloadUtil {
return downloadDirectory;
}
@SuppressLint("UnsafeOptInUsageError")
private static CacheDataSource.Factory buildReadOnlyCacheDataSource(DataSource.Factory upstreamFactory, Cache cache) {
return new CacheDataSource.Factory()
.setCache(cache)

View file

@ -49,7 +49,6 @@ public class MusicUtil {
return Uri.parse(uri.toString());
}
@SuppressLint("UnsafeOptInUsageError")
public static Uri getDownloadUri(String id) {
Map<String, String> params = App.getSubsonicClientInstance(App.getInstance(), false).getParams();
@ -124,6 +123,18 @@ public class MusicUtil {
return "";
}
public static String getReadableLyrics(String string) {
if (string != null) {
return string
.replaceAll("&#34;", "\"")
.replaceAll("&#39;", "'")
.replaceAll("&amp;", "'")
.replaceAll("&#xA;", "\n");
}
return "";
}
public static String normalizedArtistName(String string) {
if (string != null) {
if (string.toLowerCase().contains(" feat.")) return Pattern.compile(" feat.", Pattern.CASE_INSENSITIVE).split(string)[0].trim();