I am really new to android app development . I am developing an app to a problem for and that is to SET Network type to LTE only . I went to secret menu by using * # * # 4636 # *# * and change the settings to LTE only . I just see logcat when I did it manually on phone and the log was something like this .
Telecom : PhoneAccountRegistrar: Modify account: [ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, ***, UserHandle{0}(cap: 1086 -> 1078)]: TSI.rPA@L74
Now I want to know how to do this within myapp .
First I tried to go into settings by this code but I don't know how to change it .
Intent in = new Intent(Intent.ACTION_MAIN);
in.setClassName("com.android.settings" , "com.android.settings.RadioInfo");
startActivity(in);
But don't know how to do changes in RadioInfo .