Sync libraries, artist, album, genre, song, playlist, playlist song

This commit is contained in:
CappielloAntonio 2021-07-26 19:03:51 +02:00
parent 3a91ee68db
commit 304a5f078a
30 changed files with 716 additions and 1699 deletions

View file

@ -0,0 +1,10 @@
package com.cappielloantonio.play.helper;
import android.content.Context;
import android.widget.Toast;
public class ErrorHelper {
public static void handle(Context context, int code, String message) {
Toast.makeText(context, code + " - " + message, Toast.LENGTH_LONG).show();
}
}