LoginSignup
2
1

More than 5 years have passed since last update.

Androidライブラリのアップデート手順メモ

Last updated at Posted at 2017-01-11

ライブラリのアップデート時手順をメモ。
以下のライブラリのアップデート
ChatMessageView

バージョン書き換え

1.2.1 から 1.2.2 へ書き換え

build.gradle
uploadArchives {
    repositories {
        mavenDeployer {
            repository url: "file://${repo.absolutePath}"
            pom.version = '1.2.2'
            pom.groupId = 'jp.bassaer.chatmessageview'
            pom.artifactId = 'chatmessageview'
        }
    }
}
README.md
dependencies {
    compile 'com.github.bassaer:chatmessageview:1.2.2'
}

AARをビルド

$ ./gradlew assembleRelease

Mavenリポジトリを配置

$ ./gradlew uploadArchives

Bintrayにアップロード

$ ./gradlew build
$ ./gradlew bintrayUpload

Bintrayのレポジトリで指定のバージョンをPublish.

以上。

参考文献

2
1
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
2
1