Files
2026-01-19 22:25:02 +01:00

43 lines
1.3 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
espressoVer = '3.6.1'
jacksonVer = '2.9.8'
// supports java 1.6
commonsIoVer = '2.5'
// supports java 1.6
commonsCompressVer = '1.12'
youtubedlAndroidVer = "ed652962e5"
youtubedlAndroidVerNoPyCrypto = "97bee6c0e8"
youtubedlAndroidVerMine = "8831745ea3"
oldytdlAndroidVer = "0.14.0"
retrofitVer = "2.9.0"
kodeinVer = "7.16.0"
agp_version = '8.1.0'
agp_version1 = '7.4.2'
}
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
google()
}
}
plugins {
id 'com.android.application' version '8.13.2' apply false
id 'com.android.library' version '8.13.2' apply false
id 'org.jetbrains.kotlin.android' version '2.3.0' apply false
id "org.jetbrains.kotlin.plugin.serialization" version "2.3.0" apply false
id "org.jetbrains.kotlin.plugin.parcelize" version "2.3.0" apply false
id 'com.android.test' version '8.13.2' apply false
id 'com.google.devtools.ksp' version '2.3.4' apply false
}
tasks.register('clean', Delete) {
delete rootProject.buildDir
}