8

My application does not break during Runtime. However, the following error messages always show up

E/NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found

this log print continuously, i did not understand and what is cause of this error,Can anyone of you guys tell me what those errors messages are exactly related to?

Device is moto g3.

Appreciate any help you can provide me with.

I found some link but there issue is

NetlinkEvent::FindParam(): Parameter 'UDEV_LOG' not found
Bert Blommers
  • 1,788
  • 2
  • 13
  • 19
Yogesh Rathi
  • 6,331
  • 4
  • 51
  • 81

2 Answers2

0

I was having the exact same problem of the "NetlinkEvent::FindParam(): Parameter 'UID' not found" with the log print loop.

I figured it was something related to my Wi-Fi connection. What solved my problem was to toggle OFF the "Airplane Mode" (basically when I had Wi-Fi and Airplane Mode ON this error occurred)

I hope this helps you

Vicente
  • 2,304
  • 11
  • 15
0

Use:

cpp.getFullNumberWithPlus()

instead of:

cpp.getFullNumber 

Or check you had added:

 <uses-permission android:name="android.permission.INTERNET"/> 

In AndroidManifest.xml. It might be helpful for you.

4b0
  • 21,981
  • 30
  • 95
  • 142
  • 2
    While this might answer the authors question, it lacks some explaining words and/or links to documentation or an example. You may also find [how to write a good answer](https://stackoverflow.com/help/how-to-answer) very helpful. Please edit your answer – Tedinoz Jan 27 '19 at 06:08