1.The videos are not visible on the home screen, but they are visible on the same server in libretube. 2.Open download card late on YouTube. 3.When you enter the end time or a higher value there and confirm, the application is closed and the error.. 4.The home page player and cut player do not open. When the cut player opens, the video often stops 5.The cutting player does not do its work exactly.
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 {
|
|
ext {
|
|
abiCodes = ['armeabi-v7a': 1, 'x86': 2, 'x86_64': 3, 'arm64-v8a': 4]
|
|
// dependency versions
|
|
appCompatVer = '1.6.1'
|
|
junitVer = '4.13.2'
|
|
androidJunitVer = '1.1.5'
|
|
espressoVer = '3.5.1'
|
|
jacksonVer = '2.9.8'
|
|
// supports java 1.6
|
|
commonsIoVer = '2.5'
|
|
// supports java 1.6
|
|
commonsCompressVer = '1.12'
|
|
youtubedlAndroidVer = "23b26d55f8"
|
|
workVer = "2.7.0"
|
|
composeVer = '1.4.2'
|
|
kotlinVer = "1.7.21"
|
|
coroutineVer = "1.6.4"
|
|
retrofitVer = "2.9.0"
|
|
kodeinVer = "7.16.0"
|
|
navVer = "2.6.0"
|
|
media3_version = "1.1.0"
|
|
}
|
|
repositories {
|
|
mavenCentral()
|
|
google()
|
|
}
|
|
|
|
}
|
|
|
|
plugins {
|
|
id 'com.android.application' version '7.4.2' apply false
|
|
id 'com.android.library' version '7.4.2' apply false
|
|
id 'org.jetbrains.kotlin.android' version '1.8.10' apply false
|
|
id "org.jetbrains.kotlin.plugin.serialization" version "1.8.10" apply false
|
|
id 'com.android.test' version '7.4.2' apply false
|
|
}
|
|
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
} |