made the app create default folders since downloading on a fresh install wouldnt work without checking the settings first, now you can made each download have their own separate temporary folder using an url and download type. this way they can be resumed fixed sponsorblock filters not working on a fresh install fixed custom command notification not being in the proper channel and other small stuff
45 lines
No EOL
1.2 KiB
Groovy
45 lines
No EOL
1.2 KiB
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
buildscript {
|
|
|
|
def versionMajor = 1
|
|
def versionMinor = 4
|
|
def versionPatch = 8
|
|
def versionBuild = 0 // bump for dogfood builds, public betas, etc.
|
|
|
|
ext {
|
|
versionCode = versionMajor * 100000 + versionMinor * 1000 + versionPatch * 100 + versionBuild
|
|
versionName = "${versionMajor}.${versionMinor}.${versionPatch}"
|
|
// dependency versions
|
|
appCompatVer = '1.5.1'
|
|
junitVer = '4.13.2'
|
|
androidJunitVer = '1.1.1'
|
|
espressoVer = '3.2.0'
|
|
jacksonVer = '2.9.8'
|
|
// supports java 1.6
|
|
commonsIoVer = '2.5'
|
|
// supports java 1.6
|
|
commonsCompressVer = '1.12'
|
|
youtubedlAndroidVer = "a3b971724d"
|
|
workVer = "2.7.1"
|
|
composeVer = "1.3.2"
|
|
kotlinVer = "1.7.20"
|
|
coroutineVer = "1.6.4"
|
|
}
|
|
repositories {
|
|
mavenCentral()
|
|
google()
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id 'com.android.application' version '7.3.1' apply false
|
|
id 'com.android.library' version '7.3.1' apply false
|
|
id 'org.jetbrains.kotlin.android' version '1.7.20' apply false
|
|
}
|
|
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
} |