0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【Android】.aabファイルから.apkファイルを書き出す

Posted at

.aab(Android App Bundle)形式のAndroidアプリを従来のAPKファイルに書き出す方法について備忘のため記載しておきます。

.aab(Android App Bundle)とは

Android App Bundleについては以下を参照してください。

環境

  • macOS Ventura
  • OpenJDK 17 (OpenJDK Runtime Environment Corretto-17.0.10.7.1 (build 17.0.10+7-LTS))

必要なツールのインストール

.aabから.apkファイルを書き出すためにbundletoolを使用します。
公式のインストール手順については以下に記載があります。

macOSの場合は、Homebrewを使用してインストールする方法が楽です。

$ brew install bundletool

手順

ターミナルから以下のようにコマンドを実行する
※オプションについては適時書き換えてください

$ bundletool build-apks \
  --mode=universal \
  --bundle=app-file.aab \
  --output=app-file.apks \
  --ks=release.keystore \
  --ks-pass='pass:password' \
  --ks-key-alias=aliasname \
  --key-pass='pass:password'

オプションの説明については以下を参照してください。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?