3
3

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.

AndroidStudio 新規にモジュールを追加して、依存関係を解決(新規モジュール側で作成したクラスを既存側から呼び出せるようにする)

Last updated at Posted at 2016-09-29

プロジェクトを作成

スクリーンショット 2016-09-29 午後1.57.12.png

新規モジュールを追加

appのパッケージで右クリック -> New -> Module -> Android Libraly -> Next -> Finish

スクリーンショット 2016-09-29 午後2.01.08.png

依存関係を解決

File -> Project Stracture -> 追加される側を選ぶ -> Dependences -> + Module dependency -> 追加するモジュールを選択

スクリーンショット 2016-09-29 午後2.04.41.png

実際に試してみる

myLibraryに適当にUserクラスを追加

User.java
public class User {
    
    String name;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }
}

スクリーンショット 2016-09-29 午後2.14.23.png

app側のMainActivityでUserクラスを使ってみる

スクリーンショット 2016-09-29 午後2.18.56.png

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?