使用广播接收器的网络状态监听器无法在Android 7.0中运行?

时间:2017-06-16 08:54:25

标签: android android-studio android-7.0-nougat

错误:

NetworkSecurityConfig: No Network Security Config specified, using platform default.

1 个答案:

答案 0 :(得分:1)

是旧的方法已被弃用你应该使用这个:

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
   registerReceiver(new ConnectionCheck(), new IntentFilter("android.net.conn.CONNECTIVITY_CHANGE"));
}