mirror of
				https://github.com/TeamNewPipe/NewPipe
				synced 2025-10-31 07:13:00 +00:00 
			
		
		
		
	Update NewPipeExtractor and adapt imports
This commit is contained in:
		| @@ -197,7 +197,7 @@ dependencies { | |||||||
|     // name and the commit hash with the commit hash of the (pushed) commit you want to test |     // name and the commit hash with the commit hash of the (pushed) commit you want to test | ||||||
|     // This works thanks to JitPack: https://jitpack.io/ |     // This works thanks to JitPack: https://jitpack.io/ | ||||||
|     implementation 'com.github.TeamNewPipe:nanojson:1d9e1aea9049fc9f85e68b43ba39fe7be1c1f751' |     implementation 'com.github.TeamNewPipe:nanojson:1d9e1aea9049fc9f85e68b43ba39fe7be1c1f751' | ||||||
|     implementation 'com.github.Theta-Dev:NewPipeExtractor:2ad496fc2b932dd89009f3892462014cb231f6ca' |     implementation 'com.github.TeamNewPipe:NewPipeExtractor:95a3cc0a173bba28c179f9f9503b1010ec6bff21' | ||||||
|     implementation 'com.github.TeamNewPipe:NoNonsense-FilePicker:5.0.0' |     implementation 'com.github.TeamNewPipe:NoNonsense-FilePicker:5.0.0' | ||||||
|  |  | ||||||
| /** Checkstyle **/ | /** Checkstyle **/ | ||||||
|   | |||||||
| @@ -13,7 +13,7 @@ import org.schabi.newpipe.databinding.PlaylistControlBinding; | |||||||
| import org.schabi.newpipe.error.UserAction; | import org.schabi.newpipe.error.UserAction; | ||||||
| import org.schabi.newpipe.extractor.InfoItem; | import org.schabi.newpipe.extractor.InfoItem; | ||||||
| import org.schabi.newpipe.extractor.ListExtractor; | import org.schabi.newpipe.extractor.ListExtractor; | ||||||
| import org.schabi.newpipe.extractor.channel.ChannelTabInfo; | import org.schabi.newpipe.extractor.channel.tabs.ChannelTabInfo; | ||||||
| import org.schabi.newpipe.extractor.linkhandler.ListLinkHandler; | import org.schabi.newpipe.extractor.linkhandler.ListLinkHandler; | ||||||
| import org.schabi.newpipe.extractor.stream.StreamInfoItem; | import org.schabi.newpipe.extractor.stream.StreamInfoItem; | ||||||
| import org.schabi.newpipe.fragments.list.BaseListInfoFragment; | import org.schabi.newpipe.fragments.list.BaseListInfoFragment; | ||||||
|   | |||||||
| @@ -14,7 +14,7 @@ import org.schabi.newpipe.database.subscription.SubscriptionDAO | |||||||
| import org.schabi.newpipe.database.subscription.SubscriptionEntity | import org.schabi.newpipe.database.subscription.SubscriptionEntity | ||||||
| import org.schabi.newpipe.extractor.Info | import org.schabi.newpipe.extractor.Info | ||||||
| import org.schabi.newpipe.extractor.channel.ChannelInfo | import org.schabi.newpipe.extractor.channel.ChannelInfo | ||||||
| import org.schabi.newpipe.extractor.channel.ChannelTabInfo | import org.schabi.newpipe.extractor.channel.tabs.ChannelTabInfo | ||||||
| import org.schabi.newpipe.extractor.feed.FeedInfo | import org.schabi.newpipe.extractor.feed.FeedInfo | ||||||
| import org.schabi.newpipe.extractor.stream.StreamInfoItem | import org.schabi.newpipe.extractor.stream.StreamInfoItem | ||||||
| import org.schabi.newpipe.local.feed.FeedDatabaseManager | import org.schabi.newpipe.local.feed.FeedDatabaseManager | ||||||
|   | |||||||
| @@ -39,7 +39,7 @@ import org.schabi.newpipe.R; | |||||||
| import org.schabi.newpipe.database.subscription.SubscriptionEntity; | import org.schabi.newpipe.database.subscription.SubscriptionEntity; | ||||||
| import org.schabi.newpipe.extractor.NewPipe; | import org.schabi.newpipe.extractor.NewPipe; | ||||||
| import org.schabi.newpipe.extractor.channel.ChannelInfo; | import org.schabi.newpipe.extractor.channel.ChannelInfo; | ||||||
| import org.schabi.newpipe.extractor.channel.ChannelTabInfo; | import org.schabi.newpipe.extractor.channel.tabs.ChannelTabInfo; | ||||||
| import org.schabi.newpipe.extractor.subscription.SubscriptionItem; | import org.schabi.newpipe.extractor.subscription.SubscriptionItem; | ||||||
| import org.schabi.newpipe.ktx.ExceptionUtils; | import org.schabi.newpipe.ktx.ExceptionUtils; | ||||||
| import org.schabi.newpipe.streams.io.SharpInputStream; | import org.schabi.newpipe.streams.io.SharpInputStream; | ||||||
|   | |||||||
| @@ -2,7 +2,7 @@ package org.schabi.newpipe.player.playqueue; | |||||||
|  |  | ||||||
|  |  | ||||||
| import org.schabi.newpipe.extractor.Page; | import org.schabi.newpipe.extractor.Page; | ||||||
| import org.schabi.newpipe.extractor.channel.ChannelTabInfo; | import org.schabi.newpipe.extractor.channel.tabs.ChannelTabInfo; | ||||||
| import org.schabi.newpipe.extractor.linkhandler.ListLinkHandler; | import org.schabi.newpipe.extractor.linkhandler.ListLinkHandler; | ||||||
| import org.schabi.newpipe.extractor.stream.StreamInfoItem; | import org.schabi.newpipe.extractor.stream.StreamInfoItem; | ||||||
| import org.schabi.newpipe.util.ExtractorHelper; | import org.schabi.newpipe.util.ExtractorHelper; | ||||||
|   | |||||||
| @@ -6,7 +6,7 @@ import android.content.SharedPreferences; | |||||||
| import androidx.annotation.StringRes; | import androidx.annotation.StringRes; | ||||||
|  |  | ||||||
| import org.schabi.newpipe.R; | import org.schabi.newpipe.R; | ||||||
| import org.schabi.newpipe.extractor.linkhandler.ChannelTabs; | import org.schabi.newpipe.extractor.channel.tabs.ChannelTabs; | ||||||
| import org.schabi.newpipe.extractor.linkhandler.ListLinkHandler; | import org.schabi.newpipe.extractor.linkhandler.ListLinkHandler; | ||||||
|  |  | ||||||
| import java.util.List; | import java.util.List; | ||||||
|   | |||||||
| @@ -40,7 +40,7 @@ import org.schabi.newpipe.extractor.MetaInfo; | |||||||
| import org.schabi.newpipe.extractor.NewPipe; | import org.schabi.newpipe.extractor.NewPipe; | ||||||
| import org.schabi.newpipe.extractor.Page; | import org.schabi.newpipe.extractor.Page; | ||||||
| import org.schabi.newpipe.extractor.channel.ChannelInfo; | import org.schabi.newpipe.extractor.channel.ChannelInfo; | ||||||
| import org.schabi.newpipe.extractor.channel.ChannelTabInfo; | import org.schabi.newpipe.extractor.channel.tabs.ChannelTabInfo; | ||||||
| import org.schabi.newpipe.extractor.comments.CommentsInfo; | import org.schabi.newpipe.extractor.comments.CommentsInfo; | ||||||
| import org.schabi.newpipe.extractor.comments.CommentsInfoItem; | import org.schabi.newpipe.extractor.comments.CommentsInfoItem; | ||||||
| import org.schabi.newpipe.extractor.kiosk.KioskInfo; | import org.schabi.newpipe.extractor.kiosk.KioskInfo; | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Stypox
					Stypox