- Add `saveCroppedImage` helper to center-crop photos to square, resize to 512px, and compress to JPEG - Apply cropping to both camera capture and gallery picker in `ListDetailScreen` and `ItemDetailSheet` - Display custom item photos in tiles with `AsyncImage` and camera badge overlay - Show full-width photos in item detail sheet - Redesign onboarding "How it works" step
26 lines
583 B
Plaintext
26 lines
583 B
Plaintext
pluginManagement {
|
|
repositories {
|
|
google {
|
|
content {
|
|
includeGroupByRegex("com\\.android.*")
|
|
includeGroupByRegex("com\\.google.*")
|
|
includeGroupByRegex("androidx.*")
|
|
}
|
|
}
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven { url = uri("https://jitpack.io") }
|
|
}
|
|
}
|
|
|
|
rootProject.name = "SafeBite"
|
|
include(":app")
|