Migrate dependencies to TOML catalog

Migrate dependencies to TOML catalog.

* Add `gradle/libs.versions.toml` file to define all dependencies, plugins, and build versions.
* Modify `build.gradle` to apply the `libs.versions.toml` file for dependency management and update the `classpath` dependencies.
* Modify `core.gradle` to apply the `libs.versions.toml` file for dependency management and update the `dependencies` block.
* Modify `app/build.gradle` to apply the `libs.versions.toml` file for dependency management and update the `dependencies` block.
* Modify `base/build.gradle` to apply the `libs.versions.toml` file for dependency management and update the `dependencies` block.
* Modify `albumlist/build.gradle` to apply the `libs.versions.toml` file for dependency management.
* Modify `photolist/build.gradle` to apply the `libs.versions.toml` file for dependency management.
* Modify `testing/build.gradle` to apply the `libs.versions.toml` file for dependency management and update the `dependencies` block.
* Delete `versions.gradle` and `base/versions.gradle` files.

---

For more details, open the [Copilot Workspace session](https://copilot-workspace.githubnext.com/imcarlost/Friendlists?shareId=XXXX-XXXX-XXXX-XXXX).
This commit is contained in:
Carlos Martinez
2024-10-01 14:07:34 -03:00
parent 18f53543d4
commit d6241ca6eb
10 changed files with 124 additions and 183 deletions

View File

@@ -1,17 +1,18 @@
apply from: '../versions.gradle'
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'
plugins {
id 'com.android.application'
id 'kotlin-android'
id 'kotlin-android-extensions'
id 'kotlin-kapt'
}
android {
compileSdkVersion build_versions.target_sdk
buildToolsVersion build_versions.build_tools
compileSdkVersion libs.versions.target_sdk.get().toInteger()
buildToolsVersion libs.versions.build_tools.get()
defaultConfig {
applicationId "com.hako.friendlists"
minSdkVersion build_versions.min_sdk
targetSdkVersion build_versions.target_sdk
minSdkVersion libs.versions.min_sdk.get().toInteger()
targetSdkVersion libs.versions.target_sdk.get().toInteger()
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"