Skip to content

wordpress-mobile/WordPress-MediaPicker-Android

Folders and files

NameName
Last commit message
Last commit date
Jul 12, 2024
Dec 1, 2022
Sep 28, 2021
Mar 10, 2022
Mar 23, 2023
Jul 13, 2023
Mar 19, 2025
Aug 14, 2024
Oct 7, 2021
Jul 20, 2023
Jul 15, 2021
Nov 10, 2023
Aug 13, 2024
Jul 5, 2024
Jul 13, 2023
Jul 7, 2023
Jan 28, 2025

Repository files navigation

WordPress-MediaPicker-Android

Use the library in your project

  • In your build.gradle:
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: <PR-number>-<commit full SHA1>
  • Each time a PR is merged to trunk: trunk-<commit full SHA1>
  • Each time a new tag is created: {tag-name}

Note that forked PRs will not trigger a Buildkite job.