47 lines
1.5 KiB
Groovy
47 lines
1.5 KiB
Groovy
|
|
ext.versions = [
|
||
|
|
// Project
|
||
|
|
minSdk : 21,
|
||
|
|
compileSdk : 36,
|
||
|
|
|
||
|
|
publishVersion_core : '13.0.0',
|
||
|
|
publishVersionCode_core : 22,
|
||
|
|
|
||
|
|
publishVersion_chromecast : '0.32',
|
||
|
|
publishVersionCode_chromecast : 16,
|
||
|
|
|
||
|
|
// Plugins
|
||
|
|
gradlePlugin : '8.10.1',
|
||
|
|
dexCount : '4.0.0',
|
||
|
|
gradleNexus : '2.0.0',
|
||
|
|
dokka : '1.8.10',
|
||
|
|
|
||
|
|
// Kotlin
|
||
|
|
kotlin : '2.1.0',
|
||
|
|
|
||
|
|
// Compose
|
||
|
|
composeBom : '2025.10.01',
|
||
|
|
|
||
|
|
// AndroidX
|
||
|
|
androidxCore : '1.17.0',
|
||
|
|
appcompat : '1.7.1',
|
||
|
|
androidxAnnotations : '1.6.0',
|
||
|
|
androidxConstraintLayout : '2.2.1',
|
||
|
|
androidxRecyclerView : '1.4.0',
|
||
|
|
androidxMediarouter : '1.8.1',
|
||
|
|
androidxLifecycleRuntime : '2.9.4',
|
||
|
|
androidxActivityCompose : '1.11.0',
|
||
|
|
|
||
|
|
// Google Play
|
||
|
|
googlePlayServicesCastFramework : '21.3.0',
|
||
|
|
|
||
|
|
// psoffritti
|
||
|
|
sampleAppTemplate : 'v1.0.4',
|
||
|
|
|
||
|
|
// Tests
|
||
|
|
junit : '4.13.2',
|
||
|
|
runner : '1.7.0',
|
||
|
|
espressoCore : '3.7.0',
|
||
|
|
|
||
|
|
// Debug
|
||
|
|
leakcanary : '2.10',
|
||
|
|
]
|