AquaStream/app/build.gradle.kts

304 lines
10 KiB
Plaintext
Raw Normal View History

2023-08-12 20:25:30 +00:00
import com.android.build.gradle.internal.cxx.configure.gradleLocalProperties
2022-10-26 19:56:31 +00:00
import org.jetbrains.dokka.gradle.DokkaTask
2023-11-11 16:30:36 +00:00
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
2022-10-26 19:56:31 +00:00
import java.io.ByteArrayOutputStream
import java.net.URL
plugins {
id("com.android.application")
id("com.google.devtools.ksp")
2022-10-26 19:56:31 +00:00
id("kotlin-android")
id("kotlin-kapt")
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)
2022-10-26 19:56:31 +00:00
String(baot.toByteArray()).trim()
else null
}
android {
testOptions {
unitTests.isReturnDefaultValues = true
}
viewBinding {
enable = true
}
2023-08-25 21:16:34 +00:00
// disable this for now
//externalNativeBuild {
// cmake {
// path("CMakeLists.txt")
// }
//}
2022-10-26 19:56:31 +00:00
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")
}
}
}
2023-10-28 22:40:20 +00:00
compileSdk = 34
buildToolsVersion = "34.0.0"
2022-10-26 19:56:31 +00:00
defaultConfig {
applicationId = "com.lagradost.cloudstream3"
minSdk = 21
2023-10-28 22:40:20 +00:00
// https://developer.android.com/about/versions/14/behavior-changes-14#safer-dynamic-code-loading
targetSdk = 33 // android 14 is fucked
2022-10-26 19:56:31 +00:00
2023-09-18 20:28:26 +00:00
versionCode = 62
2023-10-10 14:56:30 +00:00
versionName = "4.2.1"
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")
2023-08-12 20:25:30 +00:00
// Reads local.properties
val localProperties = gradleLocalProperties(rootDir)
2022-10-26 19:56:31 +00:00
buildConfigField(
"String",
"BUILDDATE",
"new java.text.SimpleDateFormat(\"yyyy-MM-dd HH:mm\").format(new java.util.Date(" + System.currentTimeMillis() + "L));"
)
2023-08-12 20:25:30 +00:00
buildConfigField(
"String",
"SIMKL_CLIENT_ID",
"\"" + (System.getenv("SIMKL_CLIENT_ID") ?: localProperties["simkl.id"]) + "\""
)
buildConfigField(
"String",
"SIMKL_CLIENT_SECRET",
"\"" + (System.getenv("SIMKL_CLIENT_SECRET") ?: localProperties["simkl.secret"]) + "\""
)
2022-10-26 19:56:31 +00:00
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
ksp {
arg("room.schemaLocation", "$projectDir/schemas")
arg("exportSchema", "true")
}
2022-10-26 19:56:31 +00:00
kapt {
includeCompileClasspath = true
}
}
buildTypes {
release {
isDebuggable = false
isMinifyEnabled = false
isShrinkResources = false
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
)
2022-10-26 19:56:31 +00:00
}
debug {
isDebuggable = true
applicationIdSuffix = ".debug"
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
)
2022-10-26 19:56:31 +00:00
}
}
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()
}
}
2022-10-26 19:56:31 +00:00
compileOptions {
isCoreLibraryDesugaringEnabled = true
2023-08-04 15:20:23 +00:00
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
2022-10-26 19:56:31 +00:00
}
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.5")
2023-10-10 14:56:30 +00:00
testImplementation("org.json:json:20230618")
2022-10-26 19:56:31 +00:00
2023-10-28 22:40:20 +00:00
implementation("androidx.core:core-ktx:1.12.0")
implementation("androidx.appcompat:appcompat:1.6.1")
2022-10-26 19:56:31 +00:00
2023-10-28 22:40:20 +00:00
implementation("com.google.android.material:material:1.10.0")
2022-10-26 19:56:31 +00:00
implementation("androidx.constraintlayout:constraintlayout:2.1.4")
2023-10-10 18:49:04 +00:00
2023-11-02 20:07:34 +00:00
implementation("androidx.navigation:navigation-fragment-ktx:2.7.5")
implementation("androidx.navigation:navigation-ui-ktx:2.7.5")
implementation("androidx.lifecycle:lifecycle-livedata-ktx:2.6.2")
implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.2")
2023-10-10 18:49:04 +00:00
2022-10-26 19:56:31 +00:00
testImplementation("junit:junit:4.13.2")
androidTestImplementation("androidx.test.ext:junit:1.1.5")
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
2023-07-15 01:25:32 +00:00
androidTestImplementation("androidx.test:core")
2022-10-26 19:56:31 +00:00
// implementation("io.karn:khttp-android:0.1.2") //okhttp instead
// implementation("org.jsoup:jsoup:1.13.1")
2023-10-10 19:45:36 +00:00
// DONT UPDATE, WILL CRASH ANDROID TV ????
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.13.1")
2022-10-26 19:56:31 +00:00
implementation("androidx.preference:preference-ktx:1.2.1")
2022-10-26 19:56:31 +00:00
implementation("com.github.bumptech.glide:glide:4.15.1")
ksp("com.github.bumptech.glide:ksp:4.15.1")
implementation("com.github.bumptech.glide:okhttp3-integration:4.15.1")
// for ksp
ksp("dev.zacsweers.autoservice:auto-service-ksp:1.1.0")
implementation("dev.zacsweers.autoservice:auto-service-ksp:1.1.0")
implementation("com.google.guava:guava:32.1.2-android")
2022-10-26 19:56:31 +00:00
implementation("jp.wasabeef:glide-transformations:4.3.0")
implementation("androidx.swiperefreshlayout:swiperefreshlayout:1.1.0")
// implementation("androidx.leanback:leanback-paging:1.1.0-alpha09")
// Media 3
implementation("androidx.media3:media3-common:1.1.1")
implementation("androidx.media3:media3-exoplayer:1.1.1")
implementation("androidx.media3:media3-datasource-okhttp:1.1.1")
implementation("androidx.media3:media3-ui:1.1.1")
implementation("androidx.media3:media3-session:1.1.1")
implementation("androidx.media3:media3-cast:1.1.1")
implementation("androidx.media3:media3-exoplayer-hls:1.1.1")
implementation("androidx.media3:media3-exoplayer-dash:1.1.1")
// Custom ffmpeg extension for audio codecs
implementation("com.github.recloudstream:media-ffmpeg:1.1.0")
2022-10-26 19:56:31 +00:00
// Bug reports
2023-10-10 14:56:30 +00:00
implementation("ch.acra:acra-core:5.11.2")
implementation("ch.acra:acra-toast:5.11.2")
2022-10-26 19:56:31 +00:00
//or for kotlin sources (requires kapt gradle plugin):
2023-10-10 14:56:30 +00:00
kapt("com.google.auto.service:auto-service:1.1.1")
2022-10-26 19:56:31 +00:00
// subtitle color picker
implementation("com.jaredrummler:colorpicker:1.1.0")
// run JS
// 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")
2022-10-26 19:56:31 +00:00
// Downloading
implementation("androidx.work:work-runtime:2.8.1")
implementation("androidx.work:work-runtime-ktx:2.8.1")
2022-10-26 19:56:31 +00:00
// Networking
// implementation("com.squareup.okhttp3:okhttp:4.9.2")
// implementation("com.squareup.okhttp3:okhttp-dnsoverhttps:4.9.1")
2023-10-17 19:13:29 +00:00
implementation("com.github.Blatzar:NiceHttp:0.4.4") // http library
// To fix SSL fuckery on android 9
2023-10-10 14:56:30 +00:00
implementation("org.conscrypt:conscrypt-android:2.5.2")
2022-10-26 19:56:31 +00:00
// Util to skip the URI file fuckery 🙏
2023-08-29 22:52:34 +00:00
implementation("com.github.LagradOst:SafeFile:0.0.5")
2022-10-26 19:56:31 +00:00
// API because cba maintaining it myself
implementation("com.uwetrottmann.tmdb2:tmdb-java:2.10.0")
2022-10-26 19:56:31 +00:00
2023-08-17 23:46:29 +00:00
implementation("com.github.discord:OverlappingPanels:0.1.5")
2022-10-26 19:56:31 +00:00
// debugImplementation because LeakCanary should only run in debug builds.
// debugImplementation("com.squareup.leakcanary:leakcanary-android:2.12")
2022-10-26 19:56:31 +00:00
// 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")
2023-09-08 08:00:00 +00:00
// newpipe yt taken from https://github.com/TeamNewPipe/NewPipeExtractor/commits/dev
// this should be updated frequently to avoid trailer fu*kery
implementation("com.github.teamnewpipe:NewPipeExtractor:917554a")
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")
2023-01-28 22:38:02 +00:00
2023-07-14 19:43:46 +00:00
// color palette for images -> colors
2023-01-28 22:38:02 +00:00
implementation("androidx.palette:palette-ktx:1.0.0")
2023-10-02 15:44:06 +00:00
// seekbar https://github.com/rubensousa/PreviewSeekBar
implementation("com.github.rubensousa:previewseekbar-media3:1.1.1.0")
2022-10-26 19:56:31 +00:00
}
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")
}
2023-11-11 16:30:36 +00:00
tasks.withType<KotlinCompile> {
kotlinOptions {
jvmTarget = "1.8"
freeCompilerArgs = listOf("-Xjvm-default=all-compatibility")
}
}
2022-10-26 19:56:31 +00:00
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")
}
}
}
2023-01-28 22:38:55 +00:00
}