2024-07-08 17:45:54 +02:00
|
|
|
# NewPlayer
|
|
|
|
#
|
|
|
|
# @author Christian Schabesberger
|
|
|
|
#
|
|
|
|
# Copyright (C) NewPipe e.V. 2024 <code(at)newpipe-ev.de>
|
|
|
|
#
|
|
|
|
# NewPlayer is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# NewPlayer is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with NewPlayer. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2024-07-02 11:43:51 +02:00
|
|
|
[versions]
|
2024-07-22 20:13:27 +02:00
|
|
|
agp = "8.5.1"
|
2024-07-17 18:24:20 +02:00
|
|
|
kotlin = "2.0.20-Beta2"
|
2024-07-02 11:43:51 +02:00
|
|
|
coreKtx = "1.13.1"
|
|
|
|
junit = "4.13.2"
|
|
|
|
junitVersion = "1.2.1"
|
|
|
|
espressoCore = "3.6.1"
|
|
|
|
appcompat = "1.7.0"
|
|
|
|
material = "1.12.0"
|
2024-07-09 18:20:30 +02:00
|
|
|
androidx = "1.9.0"
|
2024-07-02 11:43:51 +02:00
|
|
|
constraintlayout = "2.1.4"
|
|
|
|
material3 = "1.2.1"
|
2024-07-02 17:40:49 +02:00
|
|
|
uiTooling = "1.6.8"
|
2024-07-17 18:24:20 +02:00
|
|
|
materialIconsExtendedAndroid = "1.7.0-beta05"
|
2024-07-22 20:13:27 +02:00
|
|
|
media3 = "1.3.1"
|
2024-07-08 16:05:37 +02:00
|
|
|
hiltAndroid = "2.51.1"
|
|
|
|
hiltCompiler = "1.2.0"
|
|
|
|
hiltNavigationCompose = "1.2.0"
|
|
|
|
lifecycleViewmodelCompose = "2.8.3"
|
2024-07-17 18:24:20 +02:00
|
|
|
kspVersion = "2.0.20-Beta2-1.0.23"
|
2024-07-10 16:31:08 +02:00
|
|
|
fragmentKtx = "1.8.1"
|
2024-07-17 13:21:02 +02:00
|
|
|
lifecycleRuntimeKtx = "2.8.3"
|
2024-07-17 16:39:16 +02:00
|
|
|
kotlinParcelize = "2.0.20-Beta2"
|
2024-07-18 16:01:59 +02:00
|
|
|
newplayer = "master-SNAPSHOT"
|
2024-07-31 14:14:16 +02:00
|
|
|
okhttpAndroid = "5.0.0-alpha.14"
|
2024-08-20 12:36:23 +02:00
|
|
|
coil = "2.7.0"
|
2024-09-03 12:48:16 +02:00
|
|
|
reorderable = "2.4.0-alpha02"
|
2024-09-09 18:38:04 +02:00
|
|
|
media3Session = "1.4.1"
|
2024-09-11 20:28:08 +02:00
|
|
|
media3ExoplayerDash = "1.4.1"
|
2024-09-23 20:16:05 +02:00
|
|
|
adaptiveAndroid = "1.0.0"
|
2024-07-02 11:43:51 +02:00
|
|
|
|
|
|
|
[libraries]
|
|
|
|
androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
|
|
|
|
junit = { group = "junit", name = "junit", version.ref = "junit" }
|
|
|
|
androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junitVersion" }
|
|
|
|
androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espressoCore" }
|
|
|
|
androidx-appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }
|
|
|
|
material = { group = "com.google.android.material", name = "material", version.ref = "material" }
|
2024-07-09 18:20:30 +02:00
|
|
|
androidx-activity = { group = "androidx.activity", name = "activity", version.ref = "androidx" }
|
2024-07-02 11:43:51 +02:00
|
|
|
androidx-constraintlayout = { group = "androidx.constraintlayout", name = "constraintlayout", version.ref = "constraintlayout" }
|
2024-07-09 18:20:30 +02:00
|
|
|
androidx-activity-compose = { group = "androidx.activity", name = "activity-compose", version.ref = "androidx" }
|
2024-07-02 11:43:51 +02:00
|
|
|
androidx-material3 = { group = "androidx.compose.material3", name = "material3", version.ref = "material3" }
|
2024-07-02 17:40:49 +02:00
|
|
|
androidx-ui-tooling = { group = "androidx.compose.ui", name = "ui-tooling", version.ref = "uiTooling" }
|
|
|
|
androidx-material-icons-extended-android = { group = "androidx.compose.material", name = "material-icons-extended-android", version.ref = "materialIconsExtendedAndroid" }
|
2024-07-22 20:13:27 +02:00
|
|
|
androidx-media3-exoplayer = { group = "androidx.media3", name = "media3-exoplayer", version.ref = "media3" }
|
|
|
|
androidx-media3-ui = { group = "androidx.media3", name = "media3-ui", version.ref = "media3" }
|
|
|
|
androidx-media3-common = { group = "androidx.media3", name = "media3-common", version.ref = "media3" }
|
2024-07-08 16:05:37 +02:00
|
|
|
hilt-android = { group = "com.google.dagger", name = "hilt-android", version.ref = "hiltAndroid" }
|
|
|
|
androidx-hilt-compiler = { group = "androidx.hilt", name = "hilt-compiler", version.ref = "hiltCompiler" }
|
|
|
|
androidx-hilt-navigation-compose = { group = "androidx.hilt", name = "hilt-navigation-compose", version.ref = "hiltNavigationCompose" }
|
2024-07-08 17:45:54 +02:00
|
|
|
hilt-android-compiler = { group = "com.google.dagger", name = "hilt-android-compiler", version.ref = "hiltAndroid" }
|
2024-07-08 16:05:37 +02:00
|
|
|
androidx-lifecycle-viewmodel-compose = { group = "androidx.lifecycle", name = "lifecycle-viewmodel-compose", version.ref = "lifecycleViewmodelCompose" }
|
2024-07-09 18:20:30 +02:00
|
|
|
androidx-foundation = { group = "androidx.compose.foundation", name = "foundation", version.ref = "uiTooling" }
|
2024-07-10 16:31:08 +02:00
|
|
|
androidx-fragment-ktx = { group = "androidx.fragment", name = "fragment-ktx", version.ref = "fragmentKtx" }
|
2024-07-17 13:21:02 +02:00
|
|
|
androidx-lifecycle-runtime-ktx = { group = "androidx.lifecycle", name = "lifecycle-runtime-ktx", version.ref = "lifecycleRuntimeKtx" }
|
2024-07-17 18:24:20 +02:00
|
|
|
androidx-compose-bom = { group = "androidx.compose", name = "compose-bom", version = "2024.06.00" }
|
2024-07-17 13:21:02 +02:00
|
|
|
androidx-ui = { group = "androidx.compose.ui", name = "ui" }
|
|
|
|
androidx-ui-graphics = { group = "androidx.compose.ui", name = "ui-graphics" }
|
|
|
|
androidx-ui-tooling-preview = { group = "androidx.compose.ui", name = "ui-tooling-preview" }
|
|
|
|
androidx-ui-test-manifest = { group = "androidx.compose.ui", name = "ui-test-manifest" }
|
|
|
|
androidx-ui-test-junit4 = { group = "androidx.compose.ui", name = "ui-test-junit4" }
|
2024-07-19 12:38:23 +02:00
|
|
|
newplayer = { group = "com.github.theScrabi.NewPlayer", name = "new-player", version.ref = "newplayer" }
|
2024-07-31 14:14:16 +02:00
|
|
|
okhttp-android = { group = "com.squareup.okhttp3", name = "okhttp-android", version.ref = "okhttpAndroid" }
|
2024-08-20 12:36:23 +02:00
|
|
|
coil-compose = { group = "io.coil-kt", name = "coil-compose", version.ref = "coil" }
|
2024-09-03 12:48:16 +02:00
|
|
|
reorderable = { group = "sh.calvin.reorderable", name = "reorderable", version.ref = "reorderable" }
|
2024-09-09 18:38:04 +02:00
|
|
|
androidx-media3-session = { group = "androidx.media3", name = "media3-session", version.ref = "media3Session" }
|
2024-09-11 20:28:08 +02:00
|
|
|
androidx-media3-exoplayer-dash = { group = "androidx.media3", name = "media3-exoplayer-dash", version.ref = "media3ExoplayerDash" }
|
2024-09-23 20:16:05 +02:00
|
|
|
androidx-adaptive-android = { group = "androidx.compose.material3.adaptive", name = "adaptive-android", version.ref = "adaptiveAndroid" }
|
2024-07-02 11:43:51 +02:00
|
|
|
|
2024-07-17 16:39:16 +02:00
|
|
|
|
2024-07-22 20:13:27 +02:00
|
|
|
|
2024-07-02 11:43:51 +02:00
|
|
|
[plugins]
|
|
|
|
android-application = { id = "com.android.application", version.ref = "agp" }
|
|
|
|
jetbrains-kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
|
2024-07-17 16:39:16 +02:00
|
|
|
composeCompiler = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }
|
2024-07-08 17:45:54 +02:00
|
|
|
androidHilt = { id = "com.google.dagger.hilt.android", version.ref = "hiltAndroid" }
|
2024-07-08 18:12:26 +02:00
|
|
|
kotlinAndroidKsp = { id = "com.google.devtools.ksp", version.ref = "kspVersion" }
|
2024-07-18 12:37:32 +02:00
|
|
|
kotlinParcelize = { id = "org.jetbrains.kotlin.plugin.parcelize", version.ref = "kotlinParcelize" }
|
|
|
|
android-library = { id = "com.android.library", version.ref = "agp" }
|