diff --git a/modules/mogo-module-tanlu/src/main/AndroidManifest.xml b/modules/mogo-module-tanlu/src/main/AndroidManifest.xml
index 1c2b75eee1..4337c2942a 100644
--- a/modules/mogo-module-tanlu/src/main/AndroidManifest.xml
+++ b/modules/mogo-module-tanlu/src/main/AndroidManifest.xml
@@ -42,14 +42,6 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/modules/mogo-module-tanlu/src/main/java/com/mogo/module/tanlu/receiver/NetWorkReceiver.kt b/modules/mogo-module-tanlu/src/main/java/com/mogo/module/tanlu/receiver/NetWorkReceiver.kt
deleted file mode 100644
index d29f26bb9e..0000000000
--- a/modules/mogo-module-tanlu/src/main/java/com/mogo/module/tanlu/receiver/NetWorkReceiver.kt
+++ /dev/null
@@ -1,43 +0,0 @@
-package com.mogo.module.tanlu.receiver
-
-import android.Manifest
-import android.content.BroadcastReceiver
-import android.content.Context
-import android.content.Intent
-import android.content.pm.PackageManager
-import android.util.Log
-import android.widget.Toast
-import androidx.core.content.ContextCompat
-import com.mogo.module.tanlu.util.NetworkUtil
-
-/**
- * @description 网络改变监听
- *
- * @author lixiaopeng
- * @since 2019-10-17
- */
-class NetWorkReceiver : BroadcastReceiver() {
- private var isConnect = true
-
- override fun onReceive(context: Context, intent: Intent?) {
- if (ContextCompat.checkSelfPermission(
- context,
- Manifest.permission.ACCESS_NETWORK_STATE
- ) === PackageManager.PERMISSION_GRANTED
- ) {
- if (android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.LOLLIPOP) {
- isConnect = NetworkUtil.isConnected(context)
- } else {
- isConnect = NetworkUtil.isConnectedV21(context)
- }
- }
-
-// if (!isConnect) {
-// Toast.makeText(context, "网络已断开,请检查网络", Toast.LENGTH_SHORT).show()
-// //TODO
-//
-// }
-
- }
-
-}
\ No newline at end of file