mirror of
https://github.com/gedoor/legado.git
synced 2025-01-08 11:47:32 +08:00
33cbc28fd0
Bumps `media3_version` from 1.0.2 to 1.1.0. Updates `androidx.media3:media3-exoplayer` from 1.0.2 to 1.1.0 - [Release notes](https://github.com/androidx/media/releases) - [Changelog](https://github.com/androidx/media/blob/release/RELEASENOTES.md) - [Commits](https://github.com/androidx/media/compare/1.0.2...1.1.0) Updates `androidx.media3:media3-datasource-okhttp` from 1.0.2 to 1.1.0 - [Release notes](https://github.com/androidx/media/releases) - [Changelog](https://github.com/androidx/media/blob/release/RELEASENOTES.md) - [Commits](https://github.com/androidx/media/compare/1.0.2...1.1.0) --- updated-dependencies: - dependency-name: androidx.media3:media3-exoplayer dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: androidx.media3:media3-datasource-okhttp dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
27 lines
818 B
Groovy
27 lines
818 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
ext{
|
|
compile_sdk_version = 33
|
|
build_tool_version = '33.0.1'
|
|
kotlin_version = '1.8.22'
|
|
agp_version = '8.0.2'
|
|
//exoplayer_version = '2.18.6'
|
|
media3_version = "1.1.0"
|
|
splitties_version = '3.0.0'
|
|
room_version = '2.5.2'
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id 'com.android.application' version "$agp_version" apply false
|
|
id 'com.android.library' version "$agp_version" apply false
|
|
id 'org.jetbrains.kotlin.android' version "$kotlin_version" apply false
|
|
id "de.undercouch.download" version "5.4.0" apply false
|
|
id "com.google.gms.google-services" version "4.3.15" apply false
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|