https://github.com/jmarkstar/android-media-file-chooser
Im going to develop a library to pick media files for android following those especifications https://developer.android.com/guide/topics/media/media-formats.html.
https://github.com/jmarkstar/android-media-file-chooser
android-library gallery takephoto video-recording
Last synced: 8 months ago
JSON representation
Im going to develop a library to pick media files for android following those especifications https://developer.android.com/guide/topics/media/media-formats.html.
- Host: GitHub
- URL: https://github.com/jmarkstar/android-media-file-chooser
- Owner: jmarkstar
- License: apache-2.0
- Created: 2017-06-12T06:22:23.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-06-25T00:07:11.000Z (over 8 years ago)
- Last Synced: 2025-01-08T17:06:08.269Z (9 months ago)
- Topics: android-library, gallery, takephoto, video-recording
- Language: Java
- Homepage:
- Size: 259 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://jitpack.io/#jmarkstar/android-media-file-chooser)
# android-media-file-chooser
Library to pick media files. take pictures and record videos for android following those especifications https://developer.android.com/guide/topics/media/media-formats.html.Step 1. Add it in your root build.gradle at the end of repositories:
```gradle
allprojects {
repositories {
maven { url 'https://jitpack.io' }
}
}
```
Step 2. Add the dependency```gradle
dependencies {
compile 'com.github.jmarkstar:android-media-file-chooser:0.1.2.alpha'
}
```