Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ Modern Android media toolkit built with Kotlin.

## Current Modules

### Image Picker
### imagepicker
- Gallery image picking
- Camera image capture
- Lifecycle-aware handling
- Error callbacks
- Crop integration support

### Image Cropper
### imagecropper
- Matrix-based crop engine
- Custom crop overlay
- Crop rectangle controls
Expand All @@ -22,7 +22,7 @@ Modern Android media toolkit built with Kotlin.

```text
MediaKit-android/
├── ImageCropper/
├── imagecropper/ (mapped from existing ImageCropper directory)
├── imagepicker/
├── sample-app/
├── docs/
Expand Down
7 changes: 5 additions & 2 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ pluginManagement {
gradlePluginPortal()
}
}

dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
Expand All @@ -20,7 +21,9 @@ dependencyResolutionManagement {
}

rootProject.name = "MediaKit-android"
//include(":ImageCropper", ":sample-app")
include(":ImageCropper")

include(":imagecropper")
project(":imagecropper").projectDir = file("ImageCropper")

include(":sample-app")
include(":imagepicker")
Loading