package com.example.citrusclient; import android.app.Application; public class Citrus extends Application { //データ保存 private String token; private String accountId; //getter public String getToken(){ return token; } public String getAccountId(){ return accountId; } //setter public void setToken(String token){ this.token = token; } public void setAccountId(String accountId){ this.accountId = accountId; } }