5
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

最新のAndroidXのライブラリをローカルのmavenリポジトリにpublishして使う

Last updated at Posted at 2020-01-01

概要

前に以下の方法を紹介していたのですが、普通にもっとすごく簡単にpublishできたので紹介しておきます。
https://qiita.com/takahirom/items/2dc95780586f6114b825

下準備

以下の方法でローカルにソースコードをダウンロードできます。
https://qiita.com/yuichi_araki/items/a8db45e5aa1daad8152e

ローカルのmavenリポジトリにpublish

ダウンロードした後に以下のコマンドでローカルのmavenにpublishできます。

cd frameworks/support
./gradlew publishMavenPublicationToMavenLocal

そうすると以下フォルダにAndroidXがpublishされていることが確認できます。

$ ls ~/.m2/repository/androidx/
activity              benchmark             contentpager ....

フォルダまで行けばpublishされたバージョンも確認できます。

$ ls ~/.m2/repository/androidx/work/work-runtime-ktx/
2.3.0-rc01

使い方

これを使うにはrepositoryにmavenLocal()を追加してあげて、使いたいライブラリ、例えば、implementation 'androidx.work:work-runtime-ktx:2.3.0-rc01'のようにdependenciesを追加してあげれば使うことができます。

allprojects {
    repositories {
        google()
        jcenter()
        mavenLocal() ← 追加
    }
}
5
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?