リネーム
This commit is contained in:
parent
dfb6649a3b
commit
d2e633b387
|
@ -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)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user