2022-10-26 19:56:31 +00:00
|
|
|
import com.android.build.gradle.api.BaseVariantOutput
|
|
|
|
import org.jetbrains.dokka.gradle.DokkaTask
|
|
|
|
import java.io.ByteArrayOutputStream
|
|
|
|
import java.net.URL
|
|
|
|
|
|
|
|
plugins {
|
|
|
|
id("com.android.application")
|
|
|
|
id("kotlin-android")
|
|
|
|
id("kotlin-kapt")
|
|
|
|
id("kotlin-android-extensions")
|
|
|
|
id("org.jetbrains.dokka")
|
|
|
|
}
|
|
|
|
|
|
|
|
val tmpFilePath = System.getProperty("user.home") + "/work/_temp/keystore/"
|
|
|
|
val prereleaseStoreFile: File? = File(tmpFilePath).listFiles()?.first()
|
|
|
|
|
|
|
|
fun String.execute() = ByteArrayOutputStream().use { baot ->
|
|
|
|
if (project.exec {
|
|
|
|
workingDir = projectDir
|
|
|
|
commandLine = this@execute.split(Regex("\\s"))
|
|
|
|
standardOutput = baot
|
|
|
|
}.exitValue == 0)
|
|
|
|
String(baot.toByteArray()).trim()
|
|
|
|
else null
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
testOptions {
|
|
|
|
unitTests.isReturnDefaultValues = true
|
|
|
|
}
|
|
|
|
signingConfigs {
|
|
|
|
create("prerelease") {
|
|
|
|
if (prereleaseStoreFile != null) {
|
|
|
|
storeFile = file(prereleaseStoreFile)
|
|
|
|
storePassword = System.getenv("SIGNING_STORE_PASSWORD")
|
|
|
|
keyAlias = System.getenv("SIGNING_KEY_ALIAS")
|
|
|
|
keyPassword = System.getenv("SIGNING_KEY_PASSWORD")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-05 11:39:34 +00:00
|
|
|
compileSdk = 33
|
2022-10-26 19:56:31 +00:00
|
|
|
buildToolsVersion = "30.0.3"
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId = "com.lagradost.cloudstream3"
|
|
|
|
minSdk = 21
|
2022-12-05 11:39:34 +00:00
|
|
|
targetSdk = 33
|
2022-10-26 19:56:31 +00:00
|
|
|
|
2022-11-05 18:54:04 +00:00
|
|
|
versionCode = 55
|
2022-12-11 17:14:09 +00:00
|
|
|
versionName = "3.3.0"
|
2022-10-26 19:56:31 +00:00
|
|
|
|
|
|
|
resValue("string", "app_version", "${defaultConfig.versionName}${versionNameSuffix ?: ""}")
|
|
|
|
|
|
|
|
resValue("string", "commit_hash", "git rev-parse --short HEAD".execute() ?: "")
|
|
|
|
|
|
|
|
resValue("bool", "is_prerelease", "false")
|
|
|
|
|
|
|
|
buildConfigField(
|
|
|
|
"String",
|
|
|
|
"BUILDDATE",
|
|
|
|
"new java.text.SimpleDateFormat(\"yyyy-MM-dd HH:mm\").format(new java.util.Date(" + System.currentTimeMillis() + "L));"
|
|
|
|
)
|
|
|
|
|
|
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
|
|
|
|
kapt {
|
|
|
|
includeCompileClasspath = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
isDebuggable = false
|
|
|
|
isMinifyEnabled = false
|
|
|
|
isShrinkResources = false
|
|
|
|
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
|
|
|
|
}
|
|
|
|
debug {
|
|
|
|
isDebuggable = true
|
|
|
|
applicationIdSuffix = ".debug"
|
|
|
|
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
flavorDimensions.add("state")
|
|
|
|
productFlavors {
|
|
|
|
create("stable") {
|
|
|
|
dimension = "state"
|
|
|
|
resValue("bool", "is_prerelease", "false")
|
|
|
|
}
|
|
|
|
create("prerelease") {
|
|
|
|
dimension = "state"
|
|
|
|
resValue("bool", "is_prerelease", "true")
|
|
|
|
buildConfigField("boolean", "BETA", "true")
|
|
|
|
applicationIdSuffix = ".prerelease"
|
|
|
|
signingConfig = signingConfigs.getByName("prerelease")
|
|
|
|
versionNameSuffix = "-PRE"
|
|
|
|
versionCode = (System.currentTimeMillis() / 60000).toInt()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
compileOptions {
|
|
|
|
isCoreLibraryDesugaringEnabled = true
|
|
|
|
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
}
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = "1.8"
|
|
|
|
freeCompilerArgs = listOf("-Xjvm-default=compatibility")
|
|
|
|
}
|
|
|
|
lint {
|
|
|
|
abortOnError = false
|
|
|
|
checkReleaseBuilds = false
|
|
|
|
}
|
|
|
|
namespace = "com.lagradost.cloudstream3"
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
maven("https://jitpack.io")
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation("com.google.android.mediahome:video:1.0.0")
|
|
|
|
implementation("androidx.test.ext:junit-ktx:1.1.3")
|
|
|
|
testImplementation("org.json:json:20180813")
|
|
|
|
|
|
|
|
implementation("androidx.core:core-ktx:1.8.0")
|
|
|
|
implementation("androidx.appcompat:appcompat:1.4.2") // need target 32 for 1.5.0
|
|
|
|
|
|
|
|
// dont change this to 1.6.0 it looks ugly af
|
|
|
|
implementation("com.google.android.material:material:1.5.0")
|
|
|
|
implementation("androidx.constraintlayout:constraintlayout:2.1.4")
|
|
|
|
implementation("androidx.navigation:navigation-fragment-ktx:2.5.1")
|
|
|
|
implementation("androidx.navigation:navigation-ui-ktx:2.5.1")
|
|
|
|
implementation("androidx.lifecycle:lifecycle-livedata-ktx:2.5.1")
|
|
|
|
implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1")
|
|
|
|
testImplementation("junit:junit:4.13.2")
|
|
|
|
androidTestImplementation("androidx.test.ext:junit:1.1.3")
|
|
|
|
androidTestImplementation("androidx.test.espresso:espresso-core:3.4.0")
|
|
|
|
|
|
|
|
//implementation("io.karn:khttp-android:0.1.2") //okhttp instead
|
|
|
|
// implementation("org.jsoup:jsoup:1.13.1")
|
|
|
|
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.13.1")
|
|
|
|
|
|
|
|
implementation("androidx.preference:preference-ktx:1.2.0")
|
|
|
|
|
|
|
|
implementation("com.github.bumptech.glide:glide:4.13.1")
|
|
|
|
kapt("com.github.bumptech.glide:compiler:4.13.1")
|
|
|
|
implementation("com.github.bumptech.glide:okhttp3-integration:4.13.0")
|
|
|
|
|
|
|
|
implementation("jp.wasabeef:glide-transformations:4.3.0")
|
|
|
|
|
|
|
|
implementation("androidx.swiperefreshlayout:swiperefreshlayout:1.1.0")
|
|
|
|
|
|
|
|
// implementation("androidx.leanback:leanback-paging:1.1.0-alpha09")
|
|
|
|
|
|
|
|
// Exoplayer
|
2022-12-05 11:39:34 +00:00
|
|
|
implementation("com.google.android.exoplayer:exoplayer:2.18.2")
|
|
|
|
implementation("com.google.android.exoplayer:extension-cast:2.18.2")
|
|
|
|
implementation("com.google.android.exoplayer:extension-mediasession:2.18.2")
|
|
|
|
implementation("com.google.android.exoplayer:extension-okhttp:2.18.2")
|
2022-10-26 19:56:31 +00:00
|
|
|
|
|
|
|
//implementation("com.google.android.exoplayer:extension-leanback:2.14.0")
|
|
|
|
|
|
|
|
// Bug reports
|
|
|
|
implementation("ch.acra:acra-core:5.8.4")
|
|
|
|
implementation("ch.acra:acra-toast:5.8.4")
|
|
|
|
|
|
|
|
compileOnly("com.google.auto.service:auto-service-annotations:1.0")
|
|
|
|
//either for java sources:
|
|
|
|
annotationProcessor("com.google.auto.service:auto-service:1.0")
|
|
|
|
//or for kotlin sources (requires kapt gradle plugin):
|
|
|
|
kapt("com.google.auto.service:auto-service:1.0")
|
|
|
|
|
|
|
|
// subtitle color picker
|
|
|
|
implementation("com.jaredrummler:colorpicker:1.1.0")
|
|
|
|
|
|
|
|
//run JS
|
2022-11-01 17:01:29 +00:00
|
|
|
// do not upgrade to 1.7.14, since in 1.7.14 Rhino uses the `SourceVersion` class, which is not
|
|
|
|
// available on Android (even when using desugaring), and `NoClassDefFoundError` is thrown
|
|
|
|
implementation("org.mozilla:rhino:1.7.13")
|
2022-10-26 19:56:31 +00:00
|
|
|
|
|
|
|
// TorrentStream
|
|
|
|
//implementation("com.github.TorrentStream:TorrentStream-Android:2.7.0")
|
|
|
|
|
|
|
|
// Downloading
|
|
|
|
implementation("androidx.work:work-runtime:2.7.1")
|
|
|
|
implementation("androidx.work:work-runtime-ktx:2.7.1")
|
|
|
|
|
|
|
|
// Networking
|
|
|
|
// implementation("com.squareup.okhttp3:okhttp:4.9.2")
|
|
|
|
// implementation("com.squareup.okhttp3:okhttp-dnsoverhttps:4.9.1")
|
2022-12-08 15:18:03 +00:00
|
|
|
implementation("com.github.Blatzar:NiceHttp:0.4.1")
|
2022-11-23 14:57:56 +00:00
|
|
|
// To fix SSL fuckery on android 9
|
|
|
|
implementation("org.conscrypt:conscrypt-android:2.2.1")
|
2022-10-26 19:56:31 +00:00
|
|
|
// Util to skip the URI file fuckery 🙏
|
|
|
|
implementation("com.github.tachiyomiorg:unifile:17bec43")
|
|
|
|
|
|
|
|
// API because cba maintaining it myself
|
|
|
|
implementation("com.uwetrottmann.tmdb2:tmdb-java:2.6.0")
|
|
|
|
|
|
|
|
implementation("com.github.discord:OverlappingPanels:0.1.3")
|
|
|
|
// debugImplementation because LeakCanary should only run in debug builds.
|
|
|
|
// debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.7'
|
|
|
|
|
|
|
|
// for shimmer when loading
|
|
|
|
implementation("com.facebook.shimmer:shimmer:0.5.0")
|
|
|
|
|
|
|
|
implementation("androidx.tvprovider:tvprovider:1.0.0")
|
|
|
|
|
|
|
|
// used for subtitle decoding https://github.com/albfernandez/juniversalchardet
|
|
|
|
implementation("com.github.albfernandez:juniversalchardet:2.4.0")
|
|
|
|
|
|
|
|
// slow af yt
|
|
|
|
//implementation("com.github.HaarigerHarald:android-youtubeExtractor:master-SNAPSHOT")
|
|
|
|
|
2022-11-01 17:01:29 +00:00
|
|
|
// newpipe yt taken from https://github.com/TeamNewPipe/NewPipe/blob/dev/app/build.gradle#L190
|
|
|
|
implementation("com.github.TeamNewPipe:NewPipeExtractor:9ffdd0948b2ecd82655f5ff2a3e127b2b7695d5b")
|
|
|
|
coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:1.1.6")
|
2022-10-26 19:56:31 +00:00
|
|
|
|
|
|
|
// Library/extensions searching with Levenshtein distance
|
|
|
|
implementation("me.xdrop:fuzzywuzzy:1.4.0")
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.register("androidSourcesJar", Jar::class) {
|
|
|
|
archiveClassifier.set("sources")
|
|
|
|
from(android.sourceSets.getByName("main").java.srcDirs) //full sources
|
|
|
|
}
|
|
|
|
|
|
|
|
// this is used by the gradlew plugin
|
|
|
|
tasks.register("makeJar", Copy::class) {
|
2022-10-26 20:39:36 +00:00
|
|
|
from("build/intermediates/compile_app_classes_jar/prereleaseDebug")
|
2022-10-26 19:56:31 +00:00
|
|
|
into("build")
|
|
|
|
include("classes.jar")
|
|
|
|
dependsOn("build")
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.withType<DokkaTask>().configureEach {
|
|
|
|
moduleName.set("Cloudstream")
|
|
|
|
dokkaSourceSets {
|
|
|
|
named("main") {
|
|
|
|
sourceLink {
|
|
|
|
// Unix based directory relative path to the root of the project (where you execute gradle respectively).
|
|
|
|
localDirectory.set(file("src/main/java"))
|
|
|
|
|
|
|
|
// URL showing where the source code can be accessed through the web browser
|
|
|
|
remoteUrl.set(URL("https://github.com/recloudstream/cloudstream/tree/master/app/src/main/java"))
|
|
|
|
// Suffix which is used to append the line number to the URL. Use #L for GitHub
|
|
|
|
remoteLineSuffix.set("#L")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|