Is there any method to check the mobile connection (dataconnection) is enabled or not? I found a lot of ways but all of them gived back fake datas if the WiFi was ON.
Sub MobileDataEnabled As Boolean
Dim r As Reflector
r.Target = r.GetContext
r.Target = r.RunMethod2("getSystemService", "connectivity", "java.lang.String")
Return r.RunMethod("getMobileDataEnabled")
End Sub