This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* This class would be distributed as a small library to be included in apps. | |
* The library does NOT need the (large) Conscrypt dependency. | |
*/ | |
package de.danoeh.antennapod.core; | |
import android.content.Context; | |
import android.content.pm.PackageManager; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class MaterialColors { | |
/* | |
* Heavily modified version of https://gist.github.com/kalehv/bae765c756e94455ed88 | |
*/ | |
public static final int NUM_COLORS = 19; | |
public static final int IDX_50 = 0; | |
public static final int IDX_100 = 1; | |
public static final int IDX_200 = 2; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
03-18 19:08:48.942 16934-17120/de.danoeh.antennapod.debug D/AndroidMediaPlayer: setDataSource(/storage/emulated/0/Android/data/de.danoeh.antennapod/files/media/Systemfehler/38 Minuten.mp3) | |
03-18 19:08:48.942 16934-17120/de.danoeh.antennapod.debug W/System.err: java.io.IOException: setDataSource failed. | |
03-18 19:08:48.942 16934-17120/de.danoeh.antennapod.debug W/System.err: at android.media.MediaPlayer.setDataSource(MediaPlayer.java:1187) | |
03-18 19:08:48.943 16934-17120/de.danoeh.antennapod.debug W/System.err: at android.media.MediaPlayer.setDataSource(MediaPlayer.java:1160) | |
03-18 19:08:48.943 16934-17120/de.danoeh.antennapod.debug W/System.err: at android.media.MediaPlayer.setDataSource(MediaPlayer.java:1127) | |
03-18 19:08:48.943 16934-17120/de.danoeh.antennapod.debug W/System.err: at org.antennapod.audio.AndroidAudioPlayer.setDataSource(AndroidAudioPlayer.java:350) | |
03-18 19:08:48.943 16934-17120/de.danoeh.antennapod.debug W/System.err: at org.antennapod.audio.MediaPlayer.switchMediaPlayerImp |