リネーム

This commit is contained in:
ろむねこ 2024-07-11 15:56:46 +09:00
parent dfb6649a3b
commit d2e633b387
No known key found for this signature in database
GPG Key ID: FA1F39A1BA37D168

View File

@ -24,7 +24,6 @@ import androidx.core.app.NotificationCompat;
import androidx.core.app.NotificationManagerCompat; import androidx.core.app.NotificationManagerCompat;
import com.google.firebase.firestore.DocumentReference; import com.google.firebase.firestore.DocumentReference;
import com.google.firebase.firestore.DocumentSnapshot;
import com.google.firebase.firestore.FirebaseFirestore; import com.google.firebase.firestore.FirebaseFirestore;
public class TestService extends Service { public class TestService extends Service {
@ -74,7 +73,7 @@ public class TestService extends Service {
return flags; // IDが初期化されていない場合は何もしない return flags; // IDが初期化されていない場合は何もしない
} else { } else {
mDocRef = FirebaseFirestore.getInstance().document("status/" + this.userId);//現在の位置を取得 mDocRef = FirebaseFirestore.getInstance().document("status/" + this.userId);//現在の位置を取得
initNotification(mDocRef);//現在の位置を引数に initNotification()を処理 setSnapshotListener(mDocRef);//現在の位置を引数に initNotification()を処理
} }
if (isNotBluetoothGranted()) return flags; if (isNotBluetoothGranted()) return flags;
@ -152,7 +151,7 @@ public class TestService extends Service {
registerReceiver(receiver, intentFilter); registerReceiver(receiver, intentFilter);
} }
private void initNotification(DocumentReference mDocRef) { private void setSnapshotListener(DocumentReference mDocRef) {
// Initialize the PeriodicTaskManager // Initialize the PeriodicTaskManager
// (Assuming it's done elsewhere as it's not shown in the original code) // (Assuming it's done elsewhere as it's not shown in the original code)