3
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.

settings.gradle 日本語訳

Posted at

settings.gradle に記載されているコメントの日本語訳。

#settings.gradle

本設定ファイルは gradle init タスクによって生成されたファイルである。

本設定ファイルはビルド時にどのプロジェクトを含めるかを指定する為に使用する。
シングルプロジェクトをビルドする場合は本設定ファイルは空のまま、
または削除しても良い。

Gradle によるマルチプロジェクトのビルド設定についての詳細は
user guide を参照。

マルチプロジェクトの一部としてプロジェクトを宣言するには include メソッドを使用する。

include 'shared'
include 'api'
include 'services:webservice'

rootProject.name = 'test'
3
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
3
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?