• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Accessories Wired earbud sound quality......

Could be these Samsung AKG buds are using a lossless codec with your N10? Usually BT audio devices use lossy codecs, either SBC or AAC. You can actually see, and sometimes change what codec a BT audio device is using, by going into the Developer Settings on your phone.
Yeah I noticed that. Wish I could change it for usb to match BT.
48770059907_8f21caf2a9.jpg


Update came thru this morning and it indeed fixed wired bud sound quality. Now they are right on par with BT buds. Very pleased. :D

Screenshot_20190923-042945_Software update.jpg Screenshot_20190923-042902_Samsung Internet.jpg

Root How to upgrade Android version

Could you link to the exact site where i find the latest unofficial version of android tho this bastad? :D
here you go:
https://androidforums.com/threads/how-to-upgrade-android-version.1314180/

always look to xda for anything root related. it is mainly a developers forum, but i always do my research there for all things root.

main things is to read, then read some more, and then read again.....and if you have any questions please feel free to ask here.

good luck

Charging current limit

I would be very wary of trying to change limits in something as sensitive as a quick charging system. There's a lot more to these things than pushing more current at higher voltages.

Does it revert instantly or when you try to charge it? A QC4 system can test the rating of your cable, and won't draw more current than that. And you've said yourself that your charger is rated at 3A, so doesn't sound like a QC4 charger (though QC4 can deliver 18W at 2A using 9V).

How to use API 27 telephony manager USSD feature ?

Hello, Please I am experiencing this error with the code, Kindly help me out.


java.lang.NoClassDefFoundError: Failed resolution of: Landroid/telephony/TelephonyManager$UssdResponseCallback;
at java.lang.Class.newInstance(Native Method)
at android.app.Instrumentation.newActivity(Instrumentation.java:1078)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2616)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2789)
at android.app.ActivityThread.-wrap12(ActivityThread.java)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1527)
at android.os.Handler.dispatchMessage(Handler.java:110)
at android.os.Looper.loop(Looper.java:203)
at android.app.ActivityThread.main(ActivityThread.java:6251)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1063)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:924)

Caused by: java.lang.ClassNotFoundException: Didn't find class "android.telephony.TelephonyManager$UssdResponseCallback" on path: DexPathList[[zip file "/data/app/ussd.code.myapplication-2/base.apk"],nativeLibraryDirectories=[/data/app/ussd.code.myapplication-2/lib/arm, /system/lib, /vendor/lib, /system/vendor/lib]]
at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:56)
at java.lang.ClassLoader.loadClass(ClassLoader.java:380)
at java.lang.ClassLoader.loadClass(ClassLoader.java:312)
at java.lang.Class.newInstance(Native Method)
at android.app.Instrumentation.newActivity(Instrumentation.java:1078)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2616)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2789)
at android.app.ActivityThread.-wrap12(ActivityThread.java)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1527)
at android.os.Handler.dispatchMessage(Handler.java:110)
at android.os.Looper.loop(Looper.java:203)
at android.app.ActivityThread.main(ActivityThread.java:6251)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1063)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:924)

Help Radio Band Changed while trip abroad

On my phone that has a toggle button - is that unavailable on yours?

This sounds a mess. I'd be tempted at this point to either try the fastboot solution or reflash the phone software completely. Unfortunately it sounds like the Sony support solution was just something read from a script (like service providers always say "factory reset" for everything) rather than knowledge of the specific problem.

Down grading S7 to lolipop help

So the original Samsung video app won't run on anything later than 5.1.1 Lollipop? Sure it won't run on Android 6.0 Marshmallow?

Thing is you're just not going to find a Samsung 5.1.1 firmware for a Galaxy S7, as Samsung never made that AFAIK. If you really do need to run this Samsung video app, you're going to have to find an older Samsung device, that had 5.1.1, like an S6 or Note 5.

BTW I know about some things Africa, as we have several thousand African students studying at universities here in Jinan, China.

Help Note 4 n910c

sorry but I have to answer and then Ill post on newer thread, SamMobile for official firmware us not out dated info for official firmware in regards to Samsung. And yes, If its a dated model then Sock is dated but LineageOS is still in active development even on the aging Note 4.




Oh and not to drag it in the mud but just to inform that firmware is technically not considered a rom but if you are referring to Custom roms in regards to the Note 4 Im happy to say "The disservice continues on XDA" jk. I. has to say something as your communication is suggestive of how little I know and that you are myvh more knowlegable than I. Perhaps, If you say I am a horrible speller than I wouldnt have ground to retort, but in regards to a Note 4 .....View attachment 144642 View attachment 144643 View attachment 144644 View attachment 144645

Who said anything about SamMobile containing new Android versions before an OTA uodate? What?

Run AWSiotMqtt subscription in android service

Hi all,
I want run aws iot mqtt subscription in android service. When i was run the application in device,app didn't get message which is sent from client.
My service file:

public class NotificationService extends Service {

private AWSIotMqttManager mqttManager;
Context context;
SharedPreferences sharedPreferences;
String clientId;
public NotificationService(){

}

@override
public void onCreate() {
super.onCreate();
sharedPreferences = getSharedPreferences("ClientId",Context.MODE_PRIVATE);
clientId = sharedPreferences.getString("id","");
Log.d(LOG_TAG,"ClientId =="+clientId);
}

@nullable
@override
public IBinder onBind(Intent intent) {
return null;
}

@override
public int onStartCommand(Intent intent, int flags, int startId) {
startMqttSubscription();
return START_STICKY;
}

private void startMqttSubscription() {
mqttManager = new AWSIotMqttManager(clientId,"end-point");
Log.d(LOG_TAG,"**message service is created**");
try {
mqttManager.subscribeToTopic("home/frontdoor/lock", AWSIotMqttQos.QOS0, new AWSIotMqttNewMessageCallback() {
@override
public void onMessageArrived(String topic, byte[] data) {
try {
String msg = new String(data,"UTF-8");
Log.d(LOG_TAG,"message"+msg);
Log.d(LOG_TAG,"topic"+topic);
Toast.makeText(getApplicationContext(),"messages arrived="+msg,Toast.LENGTH_SHORT).show();
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
}
});
} catch (Exception e) {
Log.e(LOG_TAG, "Subscription error.", e);
}

}

@override
public void onDestroy() {
super.onDestroy();
}
}
Please can anybody help me.

User-Friendly Guide to Fix my HTC One X

Alright so I did the getvar all and this is what I got:
(bootloader) security: on
the only thing is....is that you have s-on (security on). you can't do much unless you get s-off. so it looks like phone is not completely rooted. curious how did the phone get in this state? since you have a custom recovery did you make a nandroid backup before all of this began?

edit: sorry, but looks like the devs have figured a way around getting s-off.

Help Please suggest a trustworthy customer ROM to install on Mi 4

most custom roms are safe. most devs are pretty reliable.......now i say most. just like anything, do your research first before installing. always look to xda for custom roms. xda is a developers forum. it is where most will publish their roms or other root goodies.

just make sure to never download anything from an untrusted site.

and lastly before doing anything make sure you have a nandroid backup. do not flash or alter anything unless you do a nandroid backup. if something goes wrong you can go into recovery and restore a nandroid backup and you are good to go.

Help Help me please

Welcome to Android Forums, Sara A! :)
How do i sync my phone and my husbands
We'll need some information in order to help. Please tell us the following:

- your phone's model, e.g., Moto Z² Force Edition

- your phone's Android version, e.g., Oreo, 8.0.0, Pie, etc.

- your husband's phone's model

- your husband's phone's Android version

- what exactly you want to sync, e.g., contacts, text messages, photos, etc.

That should get the ball rolling!

Router set to 40mhz 802.11n, but all phones limited to 65mbps

My laptop with a dual band Intel wifi chip connects to the router at 300mbps, so I know the router is set to 40mhz mode double channel width.
I should be getting 150mbps with a 1x1 antenna.

and yet, all my android devices can only connect to the router at 802.11g speed... 65-72mbps, instead of 150mbps.

The router is sitting a few feet away from the devices.

How do I fix this?

I tested 3 phones and 1 tablet.

Help Is it possible to watch NFL games on your phone for free?

If you're a DirecTV customer, you can watch on your phone--but I'd hardly call it free. :eek:

You not only have to subscribe to their NFL Sunday Ticket package, but their NFL Sunday Ticket Max package:

"Only NFL SUNDAY TICKET brings you every minute of every out-of-market game live every Sunday - and only DIRECTV* has it. And with NFL SUNDAY TICKET MAX, you can stream live games on computers and mobile devices, access NFL.com Fantasy tracking, watch the RED ZONE CHANNEL, and more!"

The very small print says:

"*Subscription renews automatically each season at the prevailing rate (currently $293.94/season) unless you call to cancel prior to start of season."

Default keyboard Galaxy Tab A

Thank you Moody Blues for a detailed, attractive message. I'll certainly investigate. It's amazing to me that guys like you find and implement such things and then take the trouble to help duffers like me.

Also, Dannydet, thank you for your further assistance. I'll investigate your suggestion also. Maybe I did indeed misstep in the prep, in which case Samsung couldn't offer me an option.

Will let you know results later.

Filter

Back
Top Bottom