https://github.com/wordpress-mobile/wordpress-mediapicker-android
https://github.com/wordpress-mobile/wordpress-mediapicker-android
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/wordpress-mobile/wordpress-mediapicker-android
- Owner: wordpress-mobile
- License: gpl-2.0
- Created: 2021-07-14T20:33:33.000Z (over 4 years ago)
- Default Branch: trunk
- Last Pushed: 2025-03-18T16:41:49.000Z (12 months ago)
- Last Synced: 2025-03-18T17:37:33.727Z (12 months ago)
- Language: Kotlin
- Homepage:
- Size: 2.57 MB
- Stars: 2
- Watchers: 9
- Forks: 1
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# WordPress-MediaPicker-Android
## Use the library in your project
* In your `build.gradle`:
```groovy
repositories {
maven {
url 'https://a8c-libs.s3.amazonaws.com/android'
content {
includeGroup "org.wordpress"
includeGroup "org.wordpress.mediapicker"
}
}
}
dependencies {
implementation 'org.wordpress:mediapicker:{version}'
// implementation 'org.wordpress:mediapicker:domain:{version}'
// implementation 'org.wordpress:mediapicker:source-device:{version}'
// implementation 'org.wordpress:mediapicker:source-gif:{version}'
// implementation 'org.wordpress:mediapicker:source-camera:{version}'
// implementation 'org.wordpress:mediapicker:source-wordpress:{version}'
}
```
## Publishing a new version
In the following cases, Buildkite will publish a new version with the following format to our remote Maven repo:
* For each commit in an open PR: `-`
* Each time a PR is merged to `trunk`: `trunk-`
* Each time a new tag is created: `{tag-name}`
_Note that forked PRs will not trigger a Buildkite job._