ytdlnis/build.gradle
deniscerri a9f1e106a3
cleanup
Fixes:
When removing audio it doesn't remove the best audio
Make app only get the link part from Pinterest in share menu.   Look at this video... 👀 https://pin.it/...
add beta functionality to the app updating
If you are in beta and want to go to release allow downgrading
Language change doesnt restart activity
2023-09-07 19:41:42 +02:00

51 lines
No EOL
1.4 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.8.1"
composeVer = '1.4.2'
kotlinVer = "1.7.21"
coroutineVer = '1.7.3'
retrofitVer = "2.9.0"
kodeinVer = "7.16.0"
navVer = "2.6.0"
media3_version = "1.1.1"
agp_version = '8.1.0'
agp_version1 = '7.4.2'
RELEASE_NAME = 'YTDLnis'
BETA_NAME = 'YTDLnis [BETA]'
}
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
id 'com.google.devtools.ksp' version '1.8.10-1.0.9' apply false
}
tasks.register('clean', Delete) {
delete rootProject.buildDir
}