mirror of
https://github.com/recloudstream/cloudstream-extensions-multilingual.git
synced 2024-08-15 03:15:14 +00:00
b368fcce02
* add VostfreeProvider
* autoformat the code and add the changes requested
* remove com.lagradost.cloudstream3.animeproviders line
* optimized the getMainPage
* Add Sarlay's provider
* fix the research function and reshape the load
* Add NekosamaProvider
* add fuzzy for computing string distance
* correct the name of class
* fix and improve the search function
* rename nekosama class
* Remove no french provider
* NekosamaProvider working version
* Revert "Remove no french provider"
This reverts commit b177de518d
.
* use of apmap when necessary
* Nekosama add more results items from search
* Load function of vostfree optimized
* ""
* resolve conflict
* Add WiflixProvider
* Change title and use apmap
* No vostfree reference
* Add tags and complete season
* precise dub ou sub
* Update FrenchStream
* not anime movie
* Fix load movie for vostfree
* Add vido extractor for frenchStream
* fix reference vido
* doodstream work for Wiflix
* Udate vidoExtractor to take in account Wiflix ! Optimized FrenchStream to take directly the redirected link
* In Frenchstream dood is in reality streamlare
* Get MesFilmsProvider directly at Sarlay repository
* Requested changes are done
* Add showStatus to NekoSamaProvider
* show news episodes for neko-sama
* Requested changes done
* Add year for episodes
* French Stream change his mainUrl
* Improve research for wiflix
* add year of episodes and show the latest episode for vostfree
* Add more provider for Wiflix
* open the good extractor
* Fix Extractor
* change authors
Co-authored-by: Eddy <kingkama976@gmail.com>
94 lines
3.1 KiB
Text
94 lines
3.1 KiB
Text
import com.lagradost.cloudstream3.gradle.CloudstreamExtension
|
|
import com.android.build.gradle.BaseExtension
|
|
|
|
buildscript {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
// Shitpack repo which contains our tools and dependencies
|
|
maven("https://jitpack.io")
|
|
}
|
|
|
|
dependencies {
|
|
classpath("com.android.tools.build:gradle:7.0.4")
|
|
// Cloudstream gradle plugin which makes everything work and builds plugins
|
|
classpath("com.github.recloudstream:gradle:master-SNAPSHOT")
|
|
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.10")
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven("https://jitpack.io")
|
|
}
|
|
}
|
|
|
|
fun Project.cloudstream(configuration: CloudstreamExtension.() -> Unit) =
|
|
extensions.getByName<CloudstreamExtension>("cloudstream").configuration()
|
|
|
|
fun Project.android(configuration: BaseExtension.() -> Unit) =
|
|
extensions.getByName<BaseExtension>("android").configuration()
|
|
|
|
subprojects {
|
|
apply(plugin = "com.android.library")
|
|
apply(plugin = "kotlin-android")
|
|
apply(plugin = "com.lagradost.cloudstream3.gradle")
|
|
|
|
cloudstream {
|
|
// when running through github workflow, GITHUB_REPOSITORY should contain current repository name
|
|
setRepo(System.getenv("GITHUB_REPOSITORY") ?: "user/repo")
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion(30)
|
|
|
|
defaultConfig {
|
|
minSdk = 21
|
|
targetSdk = 30
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
|
|
kotlinOptions {
|
|
jvmTarget = "1.8" // Required
|
|
// Disables some unnecessary features
|
|
freeCompilerArgs = freeCompilerArgs +
|
|
"-Xno-call-assertions" +
|
|
"-Xno-param-assertions" +
|
|
"-Xno-receiver-assertions"
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
val apk by configurations
|
|
val implementation by configurations
|
|
|
|
// Stubs for all Cloudstream classes
|
|
apk("com.lagradost:cloudstream3:pre-release")
|
|
|
|
// these dependencies can include any of those which are added by the app,
|
|
// but you dont need to include any of them if you dont need them
|
|
// https://github.com/recloudstream/cloudstream/blob/master/app/build.gradle
|
|
implementation(kotlin("stdlib")) // adds standard kotlin features, like listOf, mapOf etc
|
|
implementation("com.github.Blatzar:NiceHttp:0.3.2") // http library
|
|
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.13.1")
|
|
implementation("org.jsoup:jsoup:1.13.1") // html parser
|
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4") // html parser
|
|
|
|
//run JS
|
|
implementation("org.mozilla:rhino:1.7.14")
|
|
// Library/extensions searching with Levenshtein distance
|
|
implementation ("me.xdrop:fuzzywuzzy:1.4.0")
|
|
}
|
|
}
|
|
|
|
task<Delete>("clean") {
|
|
delete(rootProject.buildDir)
|
|
}
|