mirror of
https://github.com/antebudimir/tempus.git
synced 2026-04-15 16:27:26 +00:00
fix: updated album art provider from hardcoded to build config id
This commit is contained in:
parent
72d4495582
commit
d1122bef4e
1 changed files with 2 additions and 1 deletions
|
|
@ -14,6 +14,7 @@ import androidx.annotation.Nullable;
|
||||||
|
|
||||||
import com.bumptech.glide.Glide;
|
import com.bumptech.glide.Glide;
|
||||||
import com.bumptech.glide.load.engine.DiskCacheStrategy;
|
import com.bumptech.glide.load.engine.DiskCacheStrategy;
|
||||||
|
import com.cappielloantonio.tempo.BuildConfig;
|
||||||
import com.cappielloantonio.tempo.glide.CustomGlideRequest;
|
import com.cappielloantonio.tempo.glide.CustomGlideRequest;
|
||||||
import com.cappielloantonio.tempo.util.Preferences;
|
import com.cappielloantonio.tempo.util.Preferences;
|
||||||
|
|
||||||
|
|
@ -28,7 +29,7 @@ import java.util.concurrent.Executors;
|
||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
|
|
||||||
public class AlbumArtContentProvider extends ContentProvider {
|
public class AlbumArtContentProvider extends ContentProvider {
|
||||||
public static final String AUTHORITY = "com.cappielloantonio.tempo.provider";
|
public static final String AUTHORITY = BuildConfig.APPLICATION_ID + ".albumart.provider";
|
||||||
public static final String ALBUM_ART = "albumArt";
|
public static final String ALBUM_ART = "albumArt";
|
||||||
private ExecutorService executor;
|
private ExecutorService executor;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue