-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enhanced version of catalog API's - Standardized names generator - Strict versions enforced - Bundle API automatically adds libs - new deps api's for version catalog synthetic accessors
- Loading branch information
Showing
7 changed files
with
120 additions
and
57 deletions.
There are no files selected for viewing
28 changes: 13 additions & 15 deletions
28
application/common/extensions/android-util/build.gradle.kts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,16 @@ | ||
androidUtil( | ||
packageName = "com.stepango.blockme.common.extensions.android.util", | ||
owner = Teams.core, | ||
dependencies = deps( | ||
androidx.constraintlayout, | ||
androidx.core_ktx, | ||
androidx.constraintlayout, | ||
androidx.fragment, | ||
androidx.viewmodel, | ||
androidx.navigation, | ||
androidx.recyclerview, | ||
androidx.paging, | ||
google.material, | ||
io.coil | ||
) + deps( | ||
target(":common:placeholder:res") | ||
) | ||
) | ||
dependencies = | ||
deps( | ||
androidx.constraintlayout, | ||
androidx.core_ktx, | ||
androidx.constraintlayout, | ||
androidx.fragment, | ||
androidx.viewmodel, | ||
androidx.navigation, | ||
androidx.recyclerview, | ||
androidx.paging, | ||
google.material, | ||
) + deps(libs.bundles.coil) + deps(target(":common:placeholder:res")) | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,4 +8,4 @@ version = "0.0.1" | |
|
||
dependencies { | ||
implementation(project(":target")) | ||
} | ||
} |