48
46

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.

Androidアプリのパッケージ名を変更する

Posted at

こんにちは。m_saekiです。

初期開発の時のパッケージ名から変更することってよくありますよね。
その際の手順を忘備録も兼ねて残しておきます。
パッケージ変更はファイルが消えるという記事とかも見かけたので自己責任でお願いします。
パッケージ名: jp.co.aaa ⇨ jp.co.bbbに変更

#開発環境
mac
AndroidStudio 3.0

build.gradle (Module: app)の変更

    defaultConfig {
        applicationId "jp.co.bbb"
        :
    }

AndroidManifest.xmlの変更

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="jp.co.bbb">

ディレクトリの変更

Finderから
src ⇨ main ⇨ java以降のディレクトリ名を変更
jp ⇨ co ⇨ bbb

ファイルのパッケージ名の変更

AndroidStudioから
cmd + shift + r ⇨ Replace in Pathを表示
上に jp.co.aaa
下に jp.co.bbb
をセットしAll Replaceする

AndroidStudio Restart

File ⇨ Invalidate Caches/Restart... ⇨ Invalidate And Restartを選択
AndroidStudio再起動したら出来上がり

48
46
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
48
46

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?