onstartCommand で変数を設定する必要がある ForegroundService という名前のサービス クラスがあります。
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
VariableManaging.isStop=false; //<==variable i need to set. Here i got an exceptioninInitializer error when my bootReceiver start service on startup. If service is start by button on activity got no error.
}
VariableManaging クラスは次で始まります。
static boolean isStop=true;
static ProgressDialog progressDialog=new ProgressDialog(Main.activity); //<== I noted that if i remove this all working well
その変数を設定する方法はありますか?