build: change of package name

This commit is contained in:
antonio 2023-06-17 15:30:23 +02:00
parent 49afdbe4eb
commit b76a38cb30
274 changed files with 1981 additions and 2161 deletions

View file

@ -0,0 +1,48 @@
package com.cappielloantonio.tempo.interfaces;
import android.os.Bundle;
public interface ClickCallback {
default void onMediaClick(Bundle bundle) {}
default void onMediaLongClick(Bundle bundle) {}
default void onAlbumClick(Bundle bundle) {}
default void onAlbumLongClick(Bundle bundle) {}
default void onArtistClick(Bundle bundle) {}
default void onArtistLongClick(Bundle bundle) {}
default void onGenreClick(Bundle bundle) {}
default void onPlaylistClick(Bundle bundle) {}
default void onPlaylistLongClick(Bundle bundle) {}
default void onYearClick(Bundle bundle) {}
default void onServerClick(Bundle bundle) {}
default void onServerLongClick(Bundle bundle) {}
default void onPodcastEpisodeClick(Bundle bundle) {}
default void onPodcastEpisodeLongClick(Bundle bundle) {}
default void onPodcastChannelClick(Bundle bundle) {}
default void onPodcastChannelLongClick(Bundle bundle) {}
default void onInternetRadioStationClick(Bundle bundle) {}
default void onInternetRadioStationLongClick(Bundle bundle) {}
default void onMusicFolderClick(Bundle bundle) {}
default void onMusicDirectoryClick(Bundle bundle) {}
default void onMusicIndexClick(Bundle bundle) {}
}

View file

@ -0,0 +1,6 @@
package com.cappielloantonio.tempo.interfaces;
public interface DecadesCallback {
void onLoadYear(int year);
}

View file

@ -0,0 +1,10 @@
package com.cappielloantonio.tempo.interfaces;
import java.util.List;
public interface MediaCallback {
void onError(Exception exception);
void onLoadMedia(List<?> media);
}

View file

@ -0,0 +1,5 @@
package com.cappielloantonio.tempo.interfaces;
public interface MediaIndexCallback {
void onRecovery(int index);
}

View file

@ -0,0 +1,6 @@
package com.cappielloantonio.tempo.interfaces;
public interface PodcastCallback {
void onDismiss();
}

View file

@ -0,0 +1,6 @@
package com.cappielloantonio.tempo.interfaces;
public interface RadioCallback {
void onDismiss();
}

View file

@ -0,0 +1,8 @@
package com.cappielloantonio.tempo.interfaces;
public interface ScanCallback {
void onError(Exception exception);
void onSuccess(boolean isScanning, long count);
}

View file

@ -0,0 +1,8 @@
package com.cappielloantonio.tempo.interfaces;
public interface SystemCallback {
void onError(Exception exception);
void onSuccess(String password, String token, String salt);
}