0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

パッケージ名の変更方法 AndroidStudio

Last updated at Posted at 2025-01-07

初めに 

個人開発をしているときに適当にパッケージ名を設定すると PlayConsoleにアップする際に困ることがあったためapplicationIdを変更する時に、同時にnameSpaceも変更したかったので。
※ドキュメントではnameSpaceとapplicationIdは同じ値が推奨されている

Google PlayはすべてのアプリケーションをapplicationIdに基づいて識別します。
一部の名前は予めAndroidのデフォルトアプリケーション用に予約されており使用できません。

手順

:com.example.Test
今回は example 部分を変更します。
※画像では日本語プラグインを利用しています。

1.build.gradle(app)の以下を変更してください
namespace = "com.example.test"

```
applicationId = "com.example.test"
```

2.プロジェクトビューに変更します
スクリーンショット 2025-01-06 22.36.06.png

3.Viewモード選択横の縦に3つ・が並んだボタンをクリック
スクリーンショット 2025-01-07 18.31.06.png


4.「ツリーの外観」を選択し表示付されるメニュー内の、「除外ファイルの表示」を選択しチェックを外します
image.png

5.exampleディレクトリを探し、右クリック「リファクタリング」→「名前の変更」
image.png

6.必要に応じて選択してください
image.png

7.変更後を確認して終了

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?