名称修正

This commit is contained in:
ろむねこ 2024-07-11 15:26:52 +09:00
parent 8164ce8bd6
commit f4f6dc0107
No known key found for this signature in database
GPG Key ID: FA1F39A1BA37D168

View File

@ -1,6 +1,5 @@
package com.example.childguard;
import android.annotation.SuppressLint;
import android.app.NotificationChannel;
import android.app.NotificationManager;
import android.app.PendingIntent;
@ -170,18 +169,18 @@ public class TestService extends Service {
if (isInCar) {//isReportedがtrue=サイト上で乗車状態のとき
if (documentSnapshot.getBoolean("isReported")) {
//ここスタートリサイクル
ResetReported();// ResetReported();を処理FireBaseのisReportedをfalseにする
resetReported();// ResetReported();を処理FireBaseのisReportedをfalseにする
Notification(getApplicationContext(), REPORTED_NOTIFICATION);//通知を行うメソッド
}
} else {//isReportedがfalse=サイト上で降車状態のとき
ResetReported();//ResetReported();を処理FireBaseのisReportedをfalseにする
resetReported();//ResetReported();を処理FireBaseのisReportedをfalseにする
}
}
});
}
public void ResetReported() {//FireBaseのisReportedをfalseに初期化するメソッド
public void resetReported() {//FireBaseのisReportedをfalseに初期化するメソッド
db = FirebaseFirestore.getInstance();//Firebaseとの紐づけ
DocumentReference isReported = db.collection("status").document(this.userId);
//isReportedをfalseに更新