mirror of
https://github.com/TeamNewPipe/NewPipe
synced 2026-04-16 20:01:22 +00:00
-Added LeakCanary as part of debug build. -Modified bookmark list to show both remote and local playlists. -Removed ability to save channel items as local playlist, in favor of subscribe.
14 lines
260 B
Java
14 lines
260 B
Java
package org.schabi.newpipe.database;
|
|
|
|
public interface LocalItem {
|
|
enum LocalItemType {
|
|
PLAYLIST_LOCAL_ITEM,
|
|
PLAYLIST_REMOTE_ITEM,
|
|
|
|
PLAYLIST_STREAM_ITEM,
|
|
STATISTIC_STREAM_ITEM,
|
|
}
|
|
|
|
LocalItemType getLocalItemType();
|
|
}
|