TestServiceの全体的なリファクタリング #28

Merged
asura146 merged 73 commits from improve/refactor_service into main 2024-07-12 02:17:26 +00:00
Showing only changes of commit 9cdfc6bc70 - Show all commits

View File

@ -66,7 +66,7 @@ public class TestService extends Service {
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
this.userId = getSharedPreferences("app_situation", MODE_PRIVATE).getString("ID", null);
if (getSharedPreferences("app_situation", MODE_PRIVATE).getString("ID", null) == null) {
if (this.userId == null) {
Log.d("onResume", "ID not initialized.");
return flags; // IDが初期化されていない場合は何もしない
}