Hi
I found this code ...
is there anybody that can help me use this ,
(May be like this that Erel did -
The phone is rooted and kitkat 4.4.2
Please .......
Thx
I found this code ...
B4X:
TelephonyManager tm =
(TelephonyManager)context.getSystemService(Context.TELEPHONY_SERVICE);
Class clazz = Class.forName(tm.getClass().getName());
Method m = clazz.getDeclaredMethod("getITelephony");
m.setAccessible(true);
ITelephony it = (ITelephony) m.invoke(tm);
it.supplyPin("1111");
is there anybody that can help me use this ,
(May be like this that Erel did -
B4X:
Sub SetMobileDataEnabled(enabled As Boolean)
Dim r As Reflector
r.Target = r.GetContext
r.Target = r.RunMethod2("getSystemService", "connectivity", "java.lang.String")
r.RunMethod2("setMobileDataEnabled", enabled, "java.lang.boolean") )
The phone is rooted and kitkat 4.4.2
Please .......
Thx
Last edited: