mirror of
				https://github.com/TeamNewPipe/NewPipe
				synced 2025-10-29 22:32:59 +00:00 
			
		
		
		
	Merge pull request #3090 from B0pol/mediaccc
Links support for mediaccc and shortened invidious
This commit is contained in:
		| @@ -92,7 +92,7 @@ dependencies { | |||||||
|         exclude module: 'support-annotations' |         exclude module: 'support-annotations' | ||||||
|     }) |     }) | ||||||
|  |  | ||||||
|     implementation 'com.github.TeamNewPipe:NewPipeExtractor:6446abc6d' |     implementation 'com.github.TeamNewPipe:NewPipeExtractor:65a7eda' | ||||||
|     testImplementation 'junit:junit:4.12' |     testImplementation 'junit:junit:4.12' | ||||||
|     testImplementation 'org.mockito:mockito-core:2.23.0' |     testImplementation 'org.mockito:mockito-core:2.23.0' | ||||||
|  |  | ||||||
|   | |||||||
| @@ -246,14 +246,7 @@ | |||||||
|                 <data android:host="tube.poal.co"/> |                 <data android:host="tube.poal.co"/> | ||||||
|                 <data android:host="invidious.13ad.de"/> |                 <data android:host="invidious.13ad.de"/> | ||||||
|                 <data android:host="yt.elukerio.org"/> |                 <data android:host="yt.elukerio.org"/> | ||||||
|                 <!-- video prefix --> |                 <data android:pathPrefix="/"/> | ||||||
|                 <data android:pathPrefix="/embed/"/> |  | ||||||
|                 <data android:pathPrefix="/watch"/> |  | ||||||
|                 <!-- channel prefix --> |  | ||||||
|                 <data android:pathPrefix="/channel/"/> |  | ||||||
|                 <data android:pathPrefix="/user/"/> |  | ||||||
|                 <!-- playlist prefix --> |  | ||||||
|                 <data android:pathPrefix="/playlist"/> |  | ||||||
|             </intent-filter> |             </intent-filter> | ||||||
|  |  | ||||||
|             <!-- Soundcloud filter --> |             <!-- Soundcloud filter --> | ||||||
| @@ -279,8 +272,26 @@ | |||||||
|                 <category android:name="android.intent.category.DEFAULT"/> |                 <category android:name="android.intent.category.DEFAULT"/> | ||||||
|                 <data android:mimeType="text/plain"/> |                 <data android:mimeType="text/plain"/> | ||||||
|             </intent-filter> |             </intent-filter> | ||||||
|         </activity> |  | ||||||
|  |  | ||||||
|  |             <!-- MediaCCC filter --> | ||||||
|  |             <intent-filter> | ||||||
|  |                 <action android:name="android.intent.action.VIEW"/> | ||||||
|  |                 <action android:name="android.media.action.MEDIA_PLAY_FROM_SEARCH"/> | ||||||
|  |                 <action android:name="android.nfc.action.NDEF_DISCOVERED"/> | ||||||
|  |  | ||||||
|  |                 <category android:name="android.intent.category.DEFAULT"/> | ||||||
|  |                 <category android:name="android.intent.category.BROWSABLE"/> | ||||||
|  |  | ||||||
|  |                 <data android:scheme="http"/> | ||||||
|  |                 <data android:scheme="https"/> | ||||||
|  |                 <data android:host="media.ccc.de"/> | ||||||
|  |                 <!-- video prefix --> | ||||||
|  |                 <data android:pathPrefix="/v/"/> | ||||||
|  |                 <!-- channel prefix--> | ||||||
|  |                 <data android:pathPrefix="/c/"/> | ||||||
|  |                 <data android:pathPrefix="/b/"/> | ||||||
|  |             </intent-filter> | ||||||
|  |         </activity> | ||||||
|         <service |         <service | ||||||
|             android:name=".RouterActivity$FetcherService" |             android:name=".RouterActivity$FetcherService" | ||||||
|             android:exported="false"/> |             android:exported="false"/> | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Tobias Groza
					Tobias Groza