Files
Friendlists/base/build.gradle
Carlos Martinez d6241ca6eb 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).
2024-10-01 14:07:34 -03:00

57 lines
1.5 KiB
Groovy

apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'
android {
compileSdkVersion libs.versions.target_sdk.get().toInteger()
buildToolsVersion libs.versions.build_tools.get()
defaultConfig {
minSdkVersion libs.versions.min_sdk.get().toInteger()
targetSdkVersion libs.versions.target_sdk.get().toInteger()
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
testOptions {
unitTests.returnDefaultValues = true
}
lintOptions {
abortOnError false
}
}
dependencies {
kapt libs.room.compiler
api libs.kotlin.std_lib
api libs.androidx.appcompat
api libs.androidx.core_ktx
api libs.androidx.constraint_layout
api libs.androidx.lifecycle_ext
api libs.androidx.lifecycle_viewmodel
api libs.androidx.recycler_view
api libs.androidx.navigation_fragment
api libs.androidx.navigation_ui
api libs.retrofit.runtime
api libs.retrofit.gson
api libs.retrofit.rx
api libs.room.runtime
api libs.koin.core
api libs.koin.scope
api libs.koin.viewmodel
api libs.rx.core
api libs.rx.android
api libs.okhttp_logging_interceptor
api libs.timber
api libs.lottie
api libs.picasso
testImplementation project(':testing')
androidTestImplementation project(':testing')
}