fix: Fixed Q1N source using UniversalExtractor as fallback (#1019)

Checklist:

- [ ] Updated `extVersionCode` value in `build.gradle` for individual extensions
- [x] Updated `overrideVersionCode` or `baseVersionCode` as needed for all multisrc extensions
- [ ] Referenced all related issues in the PR body (e.g. "Closes #xyz")
- [ ] Added the `isNsfw = true` flag in `build.gradle` when appropriate
- [ ] Have not changed source names
- [ ] Have explicitly kept the `id` if a source's name or language were changed
- [x] Have tested the modifications by compiling and running the extension through Android Studio
- [ ] Have removed `web_hi_res_512.png` when adding a new extension
- [ ] Have made sure all the icons are in png format

Reviewed-on: Kohi-den/extensions-source#1019
Co-authored-by: WebDitto <webditto@proton.me>
Co-committed-by: WebDitto <webditto@proton.me>
This commit is contained in:
WebDitto 2025-06-19 12:55:09 -05:00 committed by webditto
parent 9a5e2a9083
commit 7147360823
3 changed files with 138 additions and 2 deletions

View file

@ -1,9 +1,10 @@
ext {
extKmkVersionCode = 1
extName = 'Q1N'
extClass = '.Q1N'
themePkg = 'dooplay'
baseUrl = 'https://q1n.net'
overrideVersionCode = 20
overrideVersionCode = 21
}
apply from: "$rootDir/common.gradle"
@ -13,5 +14,6 @@ dependencies {
implementation(project(":lib:filemoon-extractor"))
implementation(project(":lib:streamwish-extractor"))
implementation(project(":lib:mixdrop-extractor"))
implementation(project(":lib:playlist-utils"))
implementation(project(":lib:streamtape-extractor"))
}