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
24 changes: 24 additions & 0 deletions SECURITY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Security Policy

## Supported Versions

MediaKit is currently under active development.

Security and stability improvements are continuously being worked on.

## Reporting a Vulnerability

If you discover a security issue:

- Avoid creating a public GitHub issue
- Report the issue responsibly
- Include reproduction details if possible

## Security Priorities

Current focus areas:
- Safer bitmap handling
- File/URI safety
- Lifecycle-safe APIs
- Memory management
- Dependency stability
30 changes: 30 additions & 0 deletions docs/COMPOSE_SUPPORT_PLAN.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Compose Support Plan

## Vision

MediaKit should support modern Jetpack Compose integrations.

## Planned Areas

### Image Picker
- Compose launch helpers
- Activity Result integration
- State-driven APIs

### Image Cropper
- Compose wrappers
- Compose-friendly crop state APIs
- Gesture interoperability

## Goals

- Kotlin-first developer experience
- Modern Android integrations
- Simple Compose setup
- Modular Compose support

## Future Direction

Potential future modules:
- compose-imagepicker
- compose-imagecropper
33 changes: 33 additions & 0 deletions docs/TESTING_STRATEGY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Testing Strategy

## Goals

MediaKit should prioritize:
- Stability
- Lifecycle safety
- Bitmap correctness
- Memory safety
- API reliability

## Recommended Testing Areas

### Image Picker
- Camera flows
- Permission denial
- Activity recreation
- Invalid URI handling
- Process death recovery

### Image Cropper
- Large image handling
- Crop accuracy
- Matrix transformations
- State restoration
- OOM prevention

## Future Improvements

- Automated UI tests
- Screenshot testing
- Instrumentation tests
- Memory stress testing
Loading