diff --git a/app/src/main/java/com/nbee/echolink/service/NotificationListener.java b/app/src/main/java/com/nbee/echolink/service/NotificationListener.java index d936d0d..f34c557 100644 --- a/app/src/main/java/com/nbee/echolink/service/NotificationListener.java +++ b/app/src/main/java/com/nbee/echolink/service/NotificationListener.java @@ -10,7 +10,7 @@ import android.util.Log; import com.nbee.echolink.model.WeChatMsg; import com.nbee.echolink.utils.HandleNoticeUtils; -import com.nbee.echolink.utils.NetworkUtil; +import com.nbee.echolink.utils.NetworkUtils; import java.text.SimpleDateFormat; import java.util.Arrays; @@ -27,7 +27,7 @@ public class NotificationListener extends NotificationListenerService { private static final List notAllowList = Arrays.asList("com.github.kr328.clash","com.google.android.dialer", "com.google.android.apps.messaging"); private HandleNoticeUtils handleNoticeUtils; - private NetworkUtil networkUtil; + private NetworkUtils networkUtil; private HashMap recentLogs = new HashMap<>(); private Handler logCleanerHandler = new Handler(Looper.getMainLooper()); @@ -35,7 +35,7 @@ public class NotificationListener extends NotificationListenerService { public void onCreate() { super.onCreate(); handleNoticeUtils = new HandleNoticeUtils(this); - networkUtil = new NetworkUtil(this); + networkUtil = new NetworkUtils(this); } @Override