2021-04-30 17:20:15 +00:00
|
|
|
plugins {
|
|
|
|
id 'com.android.application'
|
|
|
|
id 'kotlin-android'
|
2021-07-26 18:29:04 +00:00
|
|
|
id 'kotlin-kapt'
|
2021-07-28 19:14:45 +00:00
|
|
|
id 'kotlin-android-extensions'
|
2022-08-13 14:09:08 +00:00
|
|
|
id 'org.jetbrains.dokka'
|
2021-04-30 17:20:15 +00:00
|
|
|
}
|
|
|
|
|
2021-08-18 10:31:16 +00:00
|
|
|
def tmpFilePath = System.getProperty("user.home") + "/work/_temp/keystore/"
|
|
|
|
def allFilesFromDir = new File(tmpFilePath).listFiles()
|
2022-08-18 15:58:10 +00:00
|
|
|
def prereleaseStoreFile = null
|
2021-08-18 10:31:16 +00:00
|
|
|
if (allFilesFromDir != null) {
|
2022-08-18 15:58:10 +00:00
|
|
|
prereleaseStoreFile = allFilesFromDir.first()
|
2021-08-18 10:31:16 +00:00
|
|
|
}
|
|
|
|
|
2021-04-30 17:20:15 +00:00
|
|
|
android {
|
2021-10-02 23:37:12 +00:00
|
|
|
testOptions {
|
|
|
|
unitTests.returnDefaultValues = true
|
|
|
|
}
|
2021-08-18 10:31:16 +00:00
|
|
|
signingConfigs {
|
|
|
|
prerelease {
|
2022-08-18 15:58:10 +00:00
|
|
|
if (prereleaseStoreFile != null) {
|
|
|
|
storeFile = file(prereleaseStoreFile)
|
2021-08-18 10:31:16 +00:00
|
|
|
storePassword System.getenv("SIGNING_STORE_PASSWORD")
|
|
|
|
keyAlias System.getenv("SIGNING_KEY_ALIAS")
|
|
|
|
keyPassword System.getenv("SIGNING_KEY_PASSWORD")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-09-14 22:18:03 +00:00
|
|
|
compileSdkVersion 31
|
2021-04-30 17:20:15 +00:00
|
|
|
buildToolsVersion "30.0.3"
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.lagradost.cloudstream3"
|
|
|
|
minSdkVersion 21
|
2021-12-16 23:45:20 +00:00
|
|
|
targetSdkVersion 30
|
2021-10-31 01:17:56 +00:00
|
|
|
|
2022-09-06 23:23:53 +00:00
|
|
|
versionCode 51
|
|
|
|
versionName "3.1.5"
|
2021-08-29 17:15:09 +00:00
|
|
|
|
|
|
|
resValue "string", "app_version",
|
|
|
|
"${defaultConfig.versionName}${versionNameSuffix ?: ""}"
|
2021-11-29 19:26:57 +00:00
|
|
|
|
2022-08-15 13:27:25 +00:00
|
|
|
resValue "string", "commit_hash",
|
|
|
|
("git rev-parse --short HEAD".execute().text.trim() ?: "")
|
2022-08-15 13:36:16 +00:00
|
|
|
|
|
|
|
resValue "bool", "is_prerelease", "false"
|
2022-08-15 13:27:25 +00:00
|
|
|
|
2021-08-29 17:15:09 +00:00
|
|
|
buildConfigField("String", "BUILDDATE", "new java.text.SimpleDateFormat(\"yyyy-MM-dd HH:mm\").format(new java.util.Date(" + System.currentTimeMillis() + "L));")
|
2021-04-30 17:20:15 +00:00
|
|
|
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
2021-07-26 18:29:04 +00:00
|
|
|
|
|
|
|
kapt {
|
|
|
|
includeCompileClasspath = true
|
|
|
|
}
|
2021-04-30 17:20:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
2022-08-06 08:13:21 +00:00
|
|
|
// release {
|
|
|
|
// debuggable false
|
|
|
|
// minifyEnabled false
|
|
|
|
// shrinkResources false
|
|
|
|
// proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
2022-08-15 13:36:16 +00:00
|
|
|
// resValue "bool", "is_prerelease", "false"
|
2022-08-06 08:13:21 +00:00
|
|
|
// }
|
2022-08-15 10:04:04 +00:00
|
|
|
prerelease {
|
|
|
|
applicationIdSuffix ".prerelease"
|
|
|
|
buildConfigField("boolean", "BETA", "true")
|
|
|
|
signingConfig signingConfigs.prerelease
|
|
|
|
versionNameSuffix '-PRE'
|
|
|
|
debuggable false
|
|
|
|
minifyEnabled false
|
|
|
|
shrinkResources false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
2022-08-15 13:27:25 +00:00
|
|
|
resValue "bool", "is_prerelease", "true"
|
2022-08-15 10:04:04 +00:00
|
|
|
}
|
2021-10-18 14:02:05 +00:00
|
|
|
debug {
|
2022-02-05 22:21:45 +00:00
|
|
|
debuggable true
|
2021-10-18 14:02:05 +00:00
|
|
|
applicationIdSuffix ".debug"
|
2022-02-05 22:21:45 +00:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
2022-08-15 13:27:25 +00:00
|
|
|
resValue "bool", "is_prerelease", "true"
|
2021-10-18 14:02:05 +00:00
|
|
|
}
|
2021-04-30 17:20:15 +00:00
|
|
|
}
|
|
|
|
compileOptions {
|
2022-06-17 17:25:41 +00:00
|
|
|
coreLibraryDesugaringEnabled true
|
|
|
|
|
2021-04-30 17:20:15 +00:00
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = '1.8'
|
2021-07-26 18:29:04 +00:00
|
|
|
freeCompilerArgs = ['-Xjvm-default=compatibility']
|
2021-04-30 17:20:15 +00:00
|
|
|
}
|
2022-08-06 08:13:21 +00:00
|
|
|
lintOptions {
|
|
|
|
checkReleaseBuilds false
|
|
|
|
abortOnError false
|
|
|
|
}
|
2021-04-30 17:20:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
maven { url 'https://jitpack.io' }
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2022-02-13 00:53:40 +00:00
|
|
|
implementation 'com.google.android.mediahome:video:1.0.0'
|
2022-05-15 18:38:32 +00:00
|
|
|
implementation 'androidx.test.ext:junit-ktx:1.1.3'
|
2021-10-02 23:37:12 +00:00
|
|
|
testImplementation 'org.json:json:20180813'
|
|
|
|
|
2022-06-02 23:06:18 +00:00
|
|
|
implementation 'androidx.core:core-ktx:1.8.0'
|
2022-08-25 01:59:20 +00:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.4.2' // need target 32 for 1.5.0
|
2022-08-13 03:53:35 +00:00
|
|
|
|
|
|
|
// dont change this to 1.6.0 it looks ugly af
|
|
|
|
implementation 'com.google.android.material:material:1.5.0'
|
2022-06-02 23:06:18 +00:00
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
2022-08-03 22:33:37 +00:00
|
|
|
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'
|
2021-05-12 21:51:02 +00:00
|
|
|
testImplementation 'junit:junit:4.13.2'
|
2021-07-26 18:29:04 +00:00
|
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
|
|
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
|
2021-04-30 17:20:15 +00:00
|
|
|
|
2021-09-30 12:55:56 +00:00
|
|
|
//implementation "io.karn:khttp-android:0.1.2" //okhttp instead
|
2022-05-02 16:58:27 +00:00
|
|
|
// implementation 'org.jsoup:jsoup:1.13.1'
|
2022-07-30 15:43:37 +00:00
|
|
|
implementation "com.fasterxml.jackson.module:jackson-module-kotlin:2.13.1"
|
2021-05-12 21:51:02 +00:00
|
|
|
|
2022-02-04 20:49:35 +00:00
|
|
|
implementation "androidx.preference:preference-ktx:1.2.0"
|
2021-05-15 23:37:42 +00:00
|
|
|
|
2022-05-02 16:58:27 +00:00
|
|
|
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'
|
2021-10-07 17:40:31 +00:00
|
|
|
|
2022-03-17 18:26:31 +00:00
|
|
|
implementation 'jp.wasabeef:glide-transformations:4.3.0'
|
2021-05-18 22:13:16 +00:00
|
|
|
|
2021-06-06 18:06:01 +00:00
|
|
|
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
|
2021-05-22 22:25:56 +00:00
|
|
|
|
2021-11-25 22:36:35 +00:00
|
|
|
// implementation "androidx.leanback:leanback-paging:1.1.0-alpha09"
|
2021-11-25 17:26:14 +00:00
|
|
|
|
2021-05-22 22:25:56 +00:00
|
|
|
// Exoplayer
|
2021-12-04 22:40:24 +00:00
|
|
|
implementation 'com.google.android.exoplayer:exoplayer:2.16.1'
|
|
|
|
implementation 'com.google.android.exoplayer:extension-cast:2.16.1'
|
|
|
|
implementation "com.google.android.exoplayer:extension-mediasession:2.16.1"
|
2022-04-18 00:26:13 +00:00
|
|
|
implementation 'com.google.android.exoplayer:extension-okhttp:2.16.1'
|
|
|
|
|
2021-06-06 18:06:01 +00:00
|
|
|
//implementation "com.google.android.exoplayer:extension-leanback:2.14.0"
|
2021-07-26 18:29:04 +00:00
|
|
|
|
|
|
|
// 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"
|
2021-08-06 20:55:11 +00:00
|
|
|
|
|
|
|
// subtitle color picker
|
|
|
|
implementation 'com.jaredrummler:colorpicker:1.1.0'
|
2021-08-14 17:31:27 +00:00
|
|
|
|
|
|
|
//run JS
|
2022-06-17 17:25:41 +00:00
|
|
|
implementation 'org.mozilla:rhino:1.7.14'
|
2021-08-30 17:11:04 +00:00
|
|
|
|
|
|
|
// TorrentStream
|
2021-09-19 22:46:05 +00:00
|
|
|
//implementation 'com.github.TorrentStream:TorrentStream-Android:2.7.0'
|
2021-09-14 22:18:03 +00:00
|
|
|
|
|
|
|
// Downloading
|
2021-11-28 16:10:19 +00:00
|
|
|
implementation "androidx.work:work-runtime:2.7.1"
|
|
|
|
implementation "androidx.work:work-runtime-ktx:2.7.1"
|
2021-09-29 20:03:58 +00:00
|
|
|
|
|
|
|
// Networking
|
2022-05-02 16:58:27 +00:00
|
|
|
// implementation "com.squareup.okhttp3:okhttp:4.9.2"
|
|
|
|
// implementation "com.squareup.okhttp3:okhttp-dnsoverhttps:4.9.1"
|
2022-09-13 08:52:51 +00:00
|
|
|
implementation 'com.github.Blatzar:NiceHttp:0.3.3'
|
2021-11-01 15:33:46 +00:00
|
|
|
|
|
|
|
// Util to skip the URI file fuckery 🙏
|
|
|
|
implementation "com.github.tachiyomiorg:unifile:17bec43"
|
2021-11-10 22:37:44 +00:00
|
|
|
|
2021-11-28 16:10:19 +00:00
|
|
|
// API because cba maintaining it myself
|
|
|
|
implementation "com.uwetrottmann.tmdb2:tmdb-java:2.6.0"
|
|
|
|
|
2022-02-04 20:49:35 +00:00
|
|
|
implementation 'com.github.discord:OverlappingPanels:0.1.3'
|
2021-11-10 22:37:44 +00:00
|
|
|
// debugImplementation because LeakCanary should only run in debug builds.
|
2021-11-25 22:36:35 +00:00
|
|
|
// debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.7'
|
2021-12-10 23:57:11 +00:00
|
|
|
|
|
|
|
// for shimmer when loading
|
|
|
|
implementation 'com.facebook.shimmer:shimmer:0.5.0'
|
2022-02-13 00:53:40 +00:00
|
|
|
|
|
|
|
implementation "androidx.tvprovider:tvprovider:1.0.0"
|
2022-05-30 12:13:11 +00:00
|
|
|
|
|
|
|
// used for subtitle decoding https://github.com/albfernandez/juniversalchardet
|
|
|
|
implementation 'com.github.albfernandez:juniversalchardet:2.4.0'
|
2022-06-16 01:04:24 +00:00
|
|
|
|
2022-06-17 17:25:41 +00:00
|
|
|
// slow af yt
|
|
|
|
//implementation 'com.github.HaarigerHarald:android-youtubeExtractor:master-SNAPSHOT'
|
|
|
|
|
|
|
|
// newpipe yt
|
2022-09-06 23:23:53 +00:00
|
|
|
implementation 'com.github.recloudstream:NewPipeExtractor:master-SNAPSHOT'
|
2022-06-17 17:25:41 +00:00
|
|
|
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5'
|
|
|
|
|
2022-08-13 03:53:35 +00:00
|
|
|
// Library/extensions searching with Levenshtein distance
|
|
|
|
implementation 'me.xdrop:fuzzywuzzy:1.4.0'
|
2022-08-05 15:55:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
task androidSourcesJar(type: Jar) {
|
|
|
|
getArchiveClassifier().set('sources')
|
|
|
|
from android.sourceSets.main.java.srcDirs//full sources
|
2022-08-06 08:13:21 +00:00
|
|
|
}
|
|
|
|
|
2022-09-18 12:06:48 +00:00
|
|
|
// this is used by the gradlew plugin
|
2022-08-06 08:13:21 +00:00
|
|
|
task makeJar(type: Copy) {
|
2022-08-13 03:53:35 +00:00
|
|
|
from('build/intermediates/compile_app_classes_jar/debug')
|
2022-09-18 12:06:48 +00:00
|
|
|
into('build')
|
|
|
|
include('classes.jar')
|
|
|
|
dependsOn('build')
|
2022-08-15 09:23:32 +00:00
|
|
|
}
|
2022-09-18 12:06:48 +00:00
|
|
|
|
|
|
|
dokkaHtml {
|
|
|
|
moduleName.set("Cloudstream")
|
|
|
|
dokkaSourceSets {
|
|
|
|
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(new 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")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|