mirror of
https://github.com/revanced/revanced-integrations.git
synced 2025-02-08 01:56:47 +01:00
This commit improves the build files by using Gradle version catalogs and modernizes the Android build files. Additionally dependencies have been updated and some source files refactored.
19 lines
721 B
TOML
19 lines
721 B
TOML
[versions]
|
|
agp = "8.2.2"
|
|
annotation = "1.7.1"
|
|
kotlin = "1.9.22"
|
|
appcompat = "1.7.0-alpha03"
|
|
okhttp = "5.0.0-alpha.12"
|
|
retrofit = "2.9.0"
|
|
|
|
[libraries]
|
|
annotation = { module = "androidx.annotation:annotation", version.ref = "annotation" }
|
|
appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }
|
|
okhttp = { module = "com.squareup.okhttp3:okhttp", version.ref = "okhttp" }
|
|
retrofit = { module = "com.squareup.retrofit2:retrofit", version.ref = "retrofit" }
|
|
|
|
[plugins]
|
|
android-application = { id = "com.android.application", version.ref = "agp" }
|
|
android-library = { id = "com.android.library", version.ref = "agp" }
|
|
kotlin = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
|