Skip to content

Commit

Permalink
Feat(src/es): New Source: VerSeriesOnline (#145)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dark25 authored Nov 29, 2024
1 parent ac7692d commit b570f06
Show file tree
Hide file tree
Showing 9 changed files with 510 additions and 0 deletions.
22 changes: 22 additions & 0 deletions src/es/verseriesonline/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application>
<activity
android:name=".es.verseriesonline.VerSeriesOnlineUrlActivity"
android:excludeFromRecents="true"
android:exported="true"
android:theme="@android:style/Theme.NoDisplay">
<intent-filter>
<action android:name="android.intent.action.VIEW" />

<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />

<data
android:host="www.verseriesonline.net"
android:pathPattern="/anime/..*"
android:scheme="https" />
</intent-filter>
</activity>
</application>
</manifest>
16 changes: 16 additions & 0 deletions src/es/verseriesonline/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
ext {
extName = 'VerSeriesOnline'
extClass = '.VerSeriesOnline'
extVersionCode = 1
}

apply from: "$rootDir/common.gradle"

dependencies {
implementation(project(':lib:streamwish-extractor'))
implementation(project(':lib:streamtape-extractor'))
implementation(project(':lib:dood-extractor'))
implementation(project(':lib:voe-extractor'))
implementation(project(':lib:uqload-extractor'))
implementation(project(':lib:vudeo-extractor'))
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit b570f06

Please sign in to comment.